CKEditor 3.6.3 Enable Browser Spellcheck And Disable Context Menu
I'm trying to get a spellcheck into a very bare bones implementation of CKEditor. I've disabled ALL the toolbars and plugins, so we're just left with a simple text box that creates
Solution 1:
There's a config setting that disables the built-in spell checker if a browser provides one. It's set to true by default, try setting it to false.
config.disableNativeSpellChecker = false;
You can try disabling the contextmenu plugin:
config.removePlugins = 'contextmenu';
Post a Comment for "CKEditor 3.6.3 Enable Browser Spellcheck And Disable Context Menu"