Hello,
Version: 2 Beta
I have a web tab control (by Infragistics) - there are about 5 tabs in my form. I wanted to put the editor in one of tabs. I can put the editor in the first tab but the editor failed to display if I put it in the second/third/etc tab. The error message that I have was
"Can't move focus to the control because it is invisible, not enabled or of a type that does not accept the focus."
File: "http://localhost/app/editor/fckeditor.h ... ar=default"
I suspect this has to do with some code that tries to set focus to FCKeditor1 control. Will it be resolve if I turn off that setfocus code? How do I do that?
Please help.
Regards
LW
Sun, 10/24/2004 - 07:33
#1
RE: Unable to put editor inside a webtab cont
If you are using the javascript installation, try something like this:
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
oFCKeditor.BasePath = "/yourbasepath/" ;
oFCKeditor.Config["StartupFocus"] = false ;
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
oFCKeditor.Create() ;