This is a migrated thread and some comments may be shown as answers.

[Solved] RadEditor. Firefox Missing Cursor

1 Answer 223 Views
Editor
This is a migrated thread and some comments may be shown as answers.
James Stuart
Top achievements
Rank 1
James Stuart asked on 21 Sep 2007, 01:00 PM
We are having some problems where the cursor does not always appear inside the editor and the user cannot type anything.

The only way to then enter information is to switch to HTML view, then back to Design mode. Are there any setfocus type api methods that we could possibly using in client script to get this to work?

James

1 Answer, 1 is accepted

Sort by
0
Lini
Telerik team
answered on 24 Sep 2007, 02:16 PM
Hello James,

There is a setFocus() method in the client-side API of the "Prometheus" editor:

function focusEditor()  
{  
    var editor = $find("RadEditor1");  
    //this.set_Editable(true);  
    editor.setFocus();  
}  
 

You can also try the set_Editable(true) method, which forces the content area to become editable again.

Best wishes,
Lini
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
James Stuart
Top achievements
Rank 1
Answers by
Lini
Telerik team
Share this question
or