(Minor rewording) |
(Minor rewording) |
||
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 from the <code>_samples</code> directory of your CKEditor installation | + | 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. |
<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> |
Revision as of 19:47, 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.