﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12393	setData and destroy functions fail after doing drag&drop of the instance	Perlsite		"If you drag&drop the CKEDITOR, the instance is broken due to the iframe reloading. Naturally one would expect the setData to repair the CKEDITOR state. Additionally you cannot even destroy the instance in order to recreate it.

Current (high-level) workaround is:

{{{
var c = CKEDITOR.instances[name].config;
delete CKEDITOR.instances[name];
$('#cke_' + name).remove();
CKEDITOR.replace(name, c);
}}}
This snippet can be used in a ""drop"" event, but as you see from the code, this fix relies on internal knowledge of the CKEDITOR.

Please make sure that setData() works without the need to destroy and recreate the instance and also properly destroy() the instance when needed."	Bug	closed	Normal		General		wontfix		
