There is strange problem, only in IE, when loading
Editor and it is on hidden tab (folder).
JS error appears and it says that Control can not get focus, because it is not active or can not receive focus... (or something similar)
Problem is just in showing toolbar, but other part of editor works OK (adding text, CTRL-B,..). Also, when I set tab with Editor as default, everything is normal.
I post this as bug report, but maybe there is somebody who solved that problem. Any idea?
Editor and it is on hidden tab (folder).
JS error appears and it says that Control can not get focus, because it is not active or can not receive focus... (or something similar)
Problem is just in showing toolbar, but other part of editor works OK (adding text, CTRL-B,..). Also, when I set tab with Editor as default, everything is normal.
I post this as bug report, but maybe there is somebody who solved that problem. Any idea?
RE: Focus problem in IE, when initally hidden
<script type="text/javascript">
var ed_loaded = ";"; /* used to keep trace of loaded editors in case of multiple editors on the same page */
function ed_reload(name,tbar_set){
/* You must check that it wasn't create in the past to avoid multiple instanciation you can try to remove the 3 next line to see what i'm talking about. */
if( ed_loaded.indexOf(name,0)>0)
return;
ed_loaded += name+\':\';
var oFCKeditor = new FCKeditor(name);
oFCKeditor.ToolbarSet = t_set;
oFCKeditor.ReplaceTextarea() ;
}
</script>
then only call the function ed_reload('Yourtextareaname','ToolbarSetName') when you showing your hidden tab work well for me
RE: Focus problem in IE, when initally hidden
I am now trying to put this editor in my tool and I had this problem and some more problems, but so fast response from people who are using it is great recomendation to continue work.