Hello,
I'm using Ckeditor 3.x and I don't find the way to enable Spellchecking with Firefox and other navigator.
I've looked on the forum but I don't have found nothing.
Thanks
I'm using Ckeditor 3.x and I don't find the way to enable Spellchecking with Firefox and other navigator.
I've looked on the forum but I don't have found nothing.
Thanks

Re: Spellchecking
Example:
In the config.js...
CKEDITOR.editorConfig = function( config ) { config.toolbar_Full = [['SpellChecker']]; };-- OR --
CKEDITOR.editorConfig = function( config ) { config.toolbar_Custom = [['SpellChecker']]; config.toolbar = 'Custom'; };Both will give you the default SpellChecker Button in the Toolbar.