Can be reproduced with the code below:
<telerik:RadEditor runat="server" ID="RadEditor1" >
<Content>
Here is sample content!
</Content>
</telerik:RadEditor>
<input type="button" value="Set Focus On RadEditor" onclick="SetFocusOnRadEditor(); return false;" />
<script type="text/javascript">
function SetFocusOnRadEditor() {
var editor = $find("<%=RadEditor1.ClientID%>"); //get a reference to RadEditor client object
editor.setFocus(); //set the focus on the the editor
}
</script>
The problem is not reproducible when the ContentAreaMode is set to DIV or in the other browsers.
Workaround
<telerik:RadEditor runat="server" ID="RadEditor1">
<Content>
Here is sample content!
</Content>
</telerik:RadEditor>
<button type="button" onclick="SetFocusOnRadEditor()">Focuse On RadEditor</button>
<script type="text/javascript">
function SetFocusOnRadEditor() {
var editor = $find("<%=RadEditor1.ClientID%>");
if ($telerik.isChrome) {
var iframe = editor.get_contentAreaElement();
iframe.contentWindow.document.body.focus();
}
else {
editor.setFocus();
}
}
</script>