CKEditor 3.6.3 Enable spell checking and disable browser context menu

I am trying to get a spell check in a very simple CKEditor bone. I disabled ALL toolbars and plugins, so we just left with a simple text box that creates basic HTML.

Is it possible to re-enable browser / OS spell checking?

The CKEditor context menu is also pretty useless. I would not give up on this, if possible.

+4
source share
1 answer

There is a configuration parameter here that disables the built-in spellcheck if the browser provides it. The default value is true, try setting it to false.

 config.disableNativeSpellChecker = false; 

You can try disabling the contextmenu plugin:

 config.removePlugins = 'contextmenu'; 
+9
source

All Articles