﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11986	SetData doesn't load content ckeditor 4.4	Alex		"I'm using the following code to populate data, this issue happens in chrome only,
Jquery dialog opens with ckeditor, clears previous content and loads a new one with Ajax call. 
Sometimes content doesn't load, I able to reproduce it each time I open chrome developer tool in a background. Just press F12 and open jquery dialog with ckeditor inside, after opening web developer tool this error also randomly recreated with developer tool off.
When I debug it I can see that second setData doesn't load Dto.HtmlContent

Chrome version: Version 34.0.1847.137 m
Windows 7
I have disabled chrome plugins.


{{{
function Load(ID) {
    ShowEditorDialog();
    $('#Dialog').append(loader);
    CKEDITOR.instances['CkEditorTxt'].setData("""", function () {
        PostAsyncAjax(""GetData"",
            { 'ID': ID},
            function (data) {
                var Dto = data.d;
                CKEDITOR.instances['CkEditorTxt'].setData(Dto.HtmlContent);
                $('#Loader').remove();
            }
        );
    });

    return false;
}
}}}"	Bug	closed	Normal		General		expired		
