I have a one page ajax application that is reloading html page content in the background. This content needs to be edited in an existing fckeditor instance loaded when the page was initialized. How can I force the editor instance to set a new content in the editor after the editor was initialized (e.g .Create() was called). I tried simply resetting the fckeditor.Value field but it does not refresh the editor.
many thanks for any suggestions.
many thanks for any suggestions.
RE: How to reset the Editor's Value via js
Let me answer my own question.
editor = FCKeditorAPI.GetInstance('page_editor')
editor.SetHTML('new Value');
This post helped alot:
http://sourceforge.net/forum/message.php?msg_id=3857025