Hello,
I'm stuck with a problem where the only solution would be to disable all instances of CKEditor that have been loaded into dom.
I'm getting the instances with:
Cannot find anything in the API.
Can anyone give a hint on this?
Thx
I'm stuck with a problem where the only solution would be to disable all instances of CKEditor that have been loaded into dom.
I'm getting the instances with:
for(var instanceName in CKEDITOR.instances) {
console.log(CKEDITOR.instances[instanceName]);
}Cannot find anything in the API.
Can anyone give a hint on this?
Thx

Re: disable instance
for(var instanceName in CKEDITOR.instances) { CKEDITOR.instances[instanceName].destroy(); }worked.