HI,
I have a web page with two instances of FCKEditor. Each editor instance carry their own toolbar which includes a Spell check button too.
I have installed ieSpell and configured FCK to have ieSpell for spell checking.
While running the application, we observed that, on click on any one of the spell check button, ieSpell checks spell for both of the FCKEditor instances.
During research I found below api call in fckspellcheckcommand_ie.js file.
oIeSpell.CheckAllLinkedDocuments( FCK.EditorDocument ) ;
I changed the line to : oIeSpell.CheckDocumentNode( FCK.EditorDocument )
After compressing and redeploying the code while testing, I got some error message to close the browser.
So, any one can answer if have experienced in past, how to have individual Spell check button work for each FCK editor instance in a page?
Thanks and Regards
Santosh patra
I have a web page with two instances of FCKEditor. Each editor instance carry their own toolbar which includes a Spell check button too.
I have installed ieSpell and configured FCK to have ieSpell for spell checking.
While running the application, we observed that, on click on any one of the spell check button, ieSpell checks spell for both of the FCKEditor instances.
During research I found below api call in fckspellcheckcommand_ie.js file.
oIeSpell.CheckAllLinkedDocuments( FCK.EditorDocument ) ;
I changed the line to : oIeSpell.CheckDocumentNode( FCK.EditorDocument )
After compressing and redeploying the code while testing, I got some error message to close the browser.
So, any one can answer if have experienced in past, how to have individual Spell check button work for each FCK editor instance in a page?
Thanks and Regards
Santosh patra
Re: How to spell check only one editor instance at a time???
In the \fckeditor\editor\_source\commandclasses\fckspellcheckcommand_ie.js file,