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 basic HTML.
Is it possible re-enable the browser/OS spellchecking?
The CKEditor
contextual menu is also pretty useless. I wouldn't mind getting rid of that too if that's possible.
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 basic HTML.
Is it possible re-enable the browser/OS spellchecking?
The CKEditor
contextual menu is also pretty useless. I wouldn't mind getting rid of that too if that's possible.
- Is this answer still working for you? Because it doesn't seem to work for me, at least with google chrome... – Kevin Commented May 6, 2014 at 19:31
- Scratch that, it was a bug with an older version, the latest is working again – Kevin Commented May 6, 2014 at 19:51
1 Answer
Reset to default 9There'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';
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745222531a4617314.html
评论列表(0条)