I have radeditor in my user control (MyRadEditor.ascx) and im loading this control in another user control (PrintView). i have written setfocus in the ascx page of MyRadEditor
any way to call the set focus function when the editor loaded. our project is with DNN
<
script type="text/javascript">
function SetFocusOnRadEditor(clientId)
{
var editor = $find(clientId); //get a reference to RadEditor client object
editor.setFocus();
//set the focus on the the editor
}
</
script>
any way to call the set focus function when the editor loaded. our project is with DNN