Hi,
I am using ckeditor 3.6.2. we placed the ckeditor at the bottom of the page. Now when we set data in the ckeditor(after ckeditor initialized), page scroll down to the ckeditor. But we want the scroll to stay at top.
here is the code block how we set data in the ckeditor
CKEDITOR.on('instanceReady', function (ev) {
var editor = ev.editor.name;
if (editor == "testCKEditor") {
fillDataInCKEditor();
}
});
function(){
var testCKEditor = CKEDITOR.instances.testCKEditor;
testCKEditor.insertHtml("<p>Some test data.</>");
}
thanks,
Amitava