I have a FCKeditor control on my asp.net web page and I'd like to set focus to it when the page is loaded, however, the FCKeditor.Focus() method is not working. Can someone tell me why? Here is my code:
using FredCK.FCKeditorV2;
private void Page_Load(object sender, System.EventArgs e)
{
.
.
((FCKeditor)CourseProfileFormView.FindControl("CourseDescrFCKeditor")).Focus();
.
.
}
When I replace the FCKeditor control with a different non-FCKeditor control, it gets the focus, so I know the problem is with FCKeditor for some reason.
Jan
using FredCK.FCKeditorV2;
private void Page_Load(object sender, System.EventArgs e)
{
.
.
((FCKeditor)CourseProfileFormView.FindControl("CourseDescrFCKeditor")).Focus();
.
.
}
When I replace the FCKeditor control with a different non-FCKeditor control, it gets the focus, so I know the problem is with FCKeditor for some reason.
Jan