How can I set the focus onto the texteditor of the editor. The old Editor from Q2 2007 had an autofocus option which worked perfectly but cannot be adapted to the latest version of the Radeditor.
Radeditor1.Focus() in the preRender didnt work.
in Javascript
What I would like to achieve is that when the editor is loaded the cursor would be in the textfield and the user can start typing instantly.
Radeditor1.Focus() in the preRender didnt work.
in Javascript
var
focussedEditor = $find("<%=Radeditor1.ClientID %>");
focussedEditor.setFocus();
Kind of worked but it sets the entire editor into focus and not exclusively the textfield.What I would like to achieve is that when the editor is loaded the cursor would be in the textfield and the user can start typing instantly.