Has anyone figured out how to integrate an external spell checker into the CKEditor? I need to integrate JSpell Evolution, an AJAX spell checker, with this editor. JSpell works by attaching to form elements. This was documented and extremely successful with FCKEditor.
My current use of CKEditor is by attaching (with an appendTo call) to a div tag and on closing the editor the value from the getData call populates both the value attribute of a hidden form element and the innerHTML of the div for the user to see. Now I can spell check/correct the form element value, but the user still sees incorrect words inside the div tag. The div innerHTML remains what was there at editor close. There is no onchange event for a input type of hidden.
Ideally I need to inline spell check inside CKEditor. Any sensible ideas?
Thanks
My current use of CKEditor is by attaching (with an appendTo call) to a div tag and on closing the editor the value from the getData call populates both the value attribute of a hidden form element and the innerHTML of the div for the user to see. Now I can spell check/correct the form element value, but the user still sees incorrect words inside the div tag. The div innerHTML remains what was there at editor close. There is no onchange event for a input type of hidden.
Ideally I need to inline spell check inside CKEditor. Any sensible ideas?
Thanks
Re: Spell Checker integration
- Darin
Re: Spell Checker integration
I'd like to integrate CKEditor with Vaadin, but it won't be doing a FORM POST and will use AJAX instead, so I need a way to know if the data has changed so that I can send it back to the server.