Hey!
I'm new to CKEditor and tested little Scripts with them.
I have found a problem with an selfdesigned "Ajax Save Plugin" and the function getSnapshotData in the "wysiwygarea plugin".
The Editor was build as a Div-Replacement and should be close in this Save-Plugin with
Now I become an "iframe is null" Error in all Browsers in that getSnapshotData Function.
i think this function will be called after the call of my Plugin, which remove all Object of the Editor.
Does another Function exists, which close the editor and stops all scripts?
The Error can be reproduce with an Plugin, which only call "editor.destroy();"
But this Editor is amazing.
The small core and performance makes this Editor to my number 1!
Bye,
Grace
PS:
I have modified the getSnapshotData with
This Quick & (Dirty) Solution works perfect and the Editor runs without exceptions.
I'm new to CKEditor and tested little Scripts with them.
I have found a problem with an selfdesigned "Ajax Save Plugin" and the function getSnapshotData in the "wysiwygarea plugin".
The Editor was build as a Div-Replacement and should be close in this Save-Plugin with
editor.destroy(true);
Now I become an "iframe is null" Error in all Browsers in that getSnapshotData Function.
i think this function will be called after the call of my Plugin, which remove all Object of the Editor.
Does another Function exists, which close the editor and stops all scripts?
The Error can be reproduce with an Plugin, which only call "editor.destroy();"
But this Editor is amazing.
The small core and performance makes this Editor to my number 1!
Bye,
Grace
PS:
I have modified the getSnapshotData with
if(iframe == undefined) return;
This Quick & (Dirty) Solution works perfect and the Editor runs without exceptions.