admin管理员组文章数量:1415684
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';
本文标签: javascriptCKEditor 363 Enable browser spellcheck and disable context menuStack Overflow
版权声明:本文标题:javascript - CKEditor 3.6.3 Enable browser spellcheck and disable context menu - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745222531a2648460.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论