Next command this.editor.edWin.focus(); doesn’t work in IE7 and Opera, but it fine works in FF, Google Chrome and Safari.
Can you help me?
You can try to use the following approach to set focus:
window.setTimeout(function(){
editor.edWin.focus();
editor.edDoc.body.focus();
},1);
It doesn’t work. Because editor is undefined
editorEdWin = this.editor;
window.setTimeout(function()
{
editorEdWin.edWin.focus();
editorEdWin.edDoc.body.focus();
},1);
This works fine