Home   Free Applications   Code Snippets   Fun Stuff 
 
 You are here: Home > Free Applications > NetSpell > Discussion Forum
Register   Login  

 
Site Navigation


Print Print this page
Email E-mail this page
Bookmark Add to Favorites

  Discussion Forum

Author Thread: Netspell integration with FCKeditor v2.3
stacey
Netspell integration with FCKeditor v2.3
Posted: Friday, August 25, 2006 4:24 PM (EST)
I'm trying to replace the old FCKeditor with its latest version - 2.3 but in doing so Netspell's function checkspellingById(ID) no longer accepts the hidden form field on fckeditor.html. Is there any solution to invoke the spellchecker with the new editor ?


Comments:

Author Thread:
stacey
Netspell integration with FCKeditor v2.3
Posted: Tuesday, August 29, 2006 10:28 AM (EST)

Found the solution:

// Call the special "FCKeditor_OnComplete" function that should be present in

// the HTML page where the editor is located.

function FCKeditor_OnComplete( editorInstance )

{var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ;};

AND add spell.js to fckeditor.html using LoadScript function.

LoadScript( 'plugins/netspell/spell.js' ) ;

jayesh
Netspell integration with FCKeditor v2.3
Posted: Monday, April 02, 2007 7:53 AM (EST)

hi,

Please give me detail of the code......

so i will implement my code



Top