When I click a button that causes a postback on the UpdatePanel
it calls the tinyMCE.triggerSave()
.
It reloads the panel and the editor show up again, but when I try to call tinyMCE.triggerSave()
the second time I get the following error:
g.win.document is null
I though it was getting the old instance, but I'm also removing the control (tinyMCE.execCommand('mceRemoveControl',false,'Editor');
) after I call the save. Even so it still crashes the second time.
How should I fix it?