custom-dropdown-ckeditor4 icon indicating copy to clipboard operation
custom-dropdown-ckeditor4 copied to clipboard

Allows you to create a custom dropdown added to the ckeditor4 toolbar, which outputs a text string (or whatever needed) to the editor.

Results 4 custom-dropdown-ckeditor4 issues
Sort by recently updated
recently updated
newest added

I'd like to fill in the dropdown, with some dynamic content, via an ajax call, Any guidelines on how to do that?

Archive: config.js KEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; // ExtraPlugins config.extraPlugins = 'strinsert,googlesearch,tabletoolstoolbar,textselection,openlink,quicktable,selectallcontextmenu,simplebutton,stat,backup,richcombo';...

Config of my ckeditor: `CKEDITOR.editorConfig = function( config ) { config.uiColor = '#ffffff'; config.language = 'pt-br'; config.filebrowserBrowseUrl = CKEDITOR.basePath + 'kcfinder/browse.php'; config.filebrowserImageBrowseUrl = CKEDITOR.basePath + 'kcfinder/browse.php?type=images'; config.filebrowserImageUploadUrl = CKEDITOR.basePath +...

Hello, please consider the patch below to control whether a string is inserted as either text or HTML. To indicate a string is HTML formatted you must provide a property...