In order to allow spellcheck by native browser, I'm using these configurations on my config.js file:
config.removePlugins = 'tabletools,contextmenu';
config.disableNativeSpellChecker = false;
The problem is that these work fine in an iframe or inline editor, but not on the divarea editor (using the divarea plugin).
When right clicking I get no context menu at all.
I know there is a related bug (#9856), but I'd like to know if there is any workaround that i can implement to make this usable in the meantime.
Any help with this would be greatly appreciated.
Thanks,
Yoni.

Native context menu bug with divarea
In order to allow spellcheck by native browser, I'm using these configurations on my config.js file:
config.removePlugins = 'tabletools,contextmenu';
config.disableNativeSpellChecker = false;
The problem is that these work fine in an iframe or inline editor, but not on the divarea editor (using the divarea plugin).
When right clicking I get no context menu at all.
I know there is a related bug (#9856), but it has been reported a long time ago and no fixes are apparent in the latest version 4.3.
Any help with this would be greatly appreciated.
Thanks,
Jonathan.
Hi Yoni,
Hi Yoni,
you can add the following line before you create the editor
CKEDITOR.dom.element.prototype.disableContextMenu = function(){};
and it will fix the issue.
The disableContextMenu only prevents the default context menu from showing.
Thanks!
Works great!