why the data not set to original textarea??
var editor = CKEDITOR.replace( editid, ckConfig);
editor.on( 'blur', function( e )
{
var editorID=editid;
console.log('=======blur=======');
var isDirty = e.editor.checkDirty() ;
if (isDirty) {
var tempDatas= e.editor.getData();
if(tempDatas){
var oriObj=document.getElementById(editorID);
if(oriObj){
oriObj.value=tempDatas;
}
}
};
});

http://mycvex.cvtest.com/action/widgets/save 200 ok 128ms
=======blur=======
GET http://mycvex.cvtest.com/pg/view/462? 200 OK 97ms