Sets the focus on RadEditor.
Here is an example:
| ASPX/ASCX |
Copy Code |
|
<rad:RadEditor id="RadEditor1" Runat="server"></rad:RadEditor>
<script type="text/javascript"> var editor = GetRadEditor ("<%=RadEditor1.ClientID%>"); //get a reference to the editor editor.SetFocus(); //set the focus on the the editor </script> |