Skip to Main Content

Unsupported

This plug-in is outdated and we are not planning to support it anymore

Please use our Rich Text Editor Pro plug-in

Example

The editor with the toolbar set to Full.

FAQ

  • How can I configure the editor's height to adapt to its content?

    Set the JavaScript Initialization Code attribute of the editor to:

    function(options){
        options.extraPlugins += ',autogrow';
        options.autoGrow_minHeight = 250;
        options.autoGrow_maxHeight = 600;
        return options;
    }