You are not logged in.
I need to know when the Xinha editor has been created and available for use in the DOM / Browser. How do I find out when Xinha has been created and is ready to go?
i'm looking for an event that tells me when it has been added to the dom. i want xinha to be available to flex but i can't add it without this event.
fckeditor has a creation complete event:
171 // The FCKeditor_OnComplete function is a special function called everytime an
172 // editor instance is completely loaded and available for API interactions.
173 function FCKeditor_OnComplete( editorInstance ) {
174 var editor = document.getElementById( editorInstance.Name );
175 if (editor) {
176 htmlControls[editor.parentNode.id].loaded = true;
177 var movie = fcGetMovieById(editor.parentNode.movieId);
178 movie.htmlCreationComplete(editor.parentNode.id);
179 }
180 }
I need something like this.
Last edited by judah (2008-05-22 20:42:56)
Offline
bump
Offline
hey guys anything???
Offline
i'm looking for an event that tells me when it has been added to the dom. i want xinha to be available to flex but i can't add it without this event.
fckeditor has a creation complete event:
171 // The FCKeditor_OnComplete function is a special function called everytime an
172 // editor instance is completely loaded and available for API interactions.
173 function FCKeditor_OnComplete( editorInstance ) {
174 var editor = document.getElementById( editorInstance.Name );
175 if (editor) {
176 htmlControls[editor.parentNode.id].loaded = true;
177 var movie = fcGetMovieById(editor.parentNode.movieId);
178 movie.htmlCreationComplete(editor.parentNode.id);
179 }
180 }
Offline
ray,
dude, thanks. that's what i needed. you rock!
Offline