I can see that he OnClientLoad is not fired when Enabled="false" is set, if I change this to true its working like a charm, is this by design?
seems weird as the control should have a load event on the client either way, problem is i need to declare the editor as a variable to set the enabled state manually with JS.
var
_editor;
function
edtRotator_onClientLoad(editor, args) {
_editor = editor;
}
$(
".rotator-images"
).dblclick(
function
() {
_editor.enableEditing(
true
);
_editor.set_editable(
true
);
});