It is possible to add plug-ins to the GeneXus FCKeditor User Control to enhance the user experience; by default the following ones are used:
Explore the CKEditor Add-ons list for more detail.
For example you can download and install the AutoSave plug-in; then you need to modify the Wiki Dynamic Parameters (use the HViewParameters WebPanel for edition); add the following new value as detailed:
ID |
Value |
EditorExtraPlugins |
button,toolbar,autosave |
Notice that this configuration will be transferred in runtime to the \CKEditor\wikiconfig.js file declaring the usage of the plug-ins:
CKEDITOR.config.extraPlugins = 'button,toolbar,autosave';
|