(Minor rewording) |
(Link to UG added) |
||
Line 1: | Line 1: | ||
{{#CUSTOMTITLE:How Do I Change the Contents of a CKEditor Dialog Window?}} | {{#CUSTOMTITLE:How Do I Change the Contents of a CKEditor Dialog Window?}} | ||
− | CKEditor allows you to customize dialog windows without changing the original editor code. For an example on how to add or remove dialog window tabs and fields refer to the '''Using the JavaScript API to customize dialog windows''' (<code>api_dialog.html</code>) sample and its source code from the <code>_samples</code> directory of your CKEditor installation. | + | CKEditor allows you to customize [[CKEditor_3.x/Users_Guide/Interface/Dialog_Windows|dialog windows]] without changing the original editor code. For an example on how to add or remove dialog window tabs and fields refer to the '''Using the JavaScript API to customize dialog windows''' (<code>api_dialog.html</code>) sample and its source code from the <code>_samples</code> directory of your CKEditor installation. |
<note>Some dialog window elements cannot be removed due to limitations of the current core editor code, but they can be hidden. Use the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#hide hide]</code> function to hide a dialog window and the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#hidePage hidePage]</code> function to hide a tab.</note> | <note>Some dialog window elements cannot be removed due to limitations of the current core editor code, but they can be hidden. Use the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#hide hide]</code> function to hide a dialog window and the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#hidePage hidePage]</code> function to hide a tab.</note> |
Latest revision as of 20:07, 14 February 2011
CKEditor allows you to customize dialog windows without changing the original editor code. For an example on how to add or remove dialog window tabs and fields refer to the Using the JavaScript API to customize dialog windows (api_dialog.html
) sample and its source code from the _samples
directory of your CKEditor installation.