Hi,
It seems that the RadEditor steals the focus from a textbox setup on pageLoad. This only happens on IE7 and IE8. It behaves as expected on all other browsers.
This is a sample code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RadEditor.aspx.cs" Inherits="Application_Test_Telerik_RadEditor" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript">
function pageLoad()
{
$get("txt").focus();
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager" runat="server" >
</asp:ScriptManager>
<input id="txt" type="text" />
<telerik:radeditor runat="server" ID="RadEditor" SkinID="BasicTools" Width="100%" Height="350px" EditModes="Design" Enabled="true" >
</telerik:radeditor>
</form>
</body>
</html>
If I change Enabled="false" the focus remains on the textbox.
Regards. If I change Enabled="false" the focus remains on the textbox.Regards.