Reputation: 171
I have an editable div and applying it CKeditor. I want spell checker within. I have tried one plug in from :http://www.webspellchecker.net/samples/scayt-ckeditor-plugin.html
It gives following error
Error parsing encrypted customer ID (Invalid data encoded string)
Any one have any solution on this. Please give me some solution on spell checker for inline editor.
Upvotes: 0
Views: 127
Reputation: 328556
SCAYT is a commercial service which has an ads-based free version. You either need to set CKEDITOR.config.scayt_customerid
to null
(gives you ads) or you need to buy the service.
Upvotes: 4
Reputation: 6712
I think the best way is to enable native spell checker from the browser.
config.disableNativeSpellChecker = false;
http://docs.ckeditor.com/#!/guide/dev_spellcheck
Upvotes: 2