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

Turning Off The Element Inspector

1 Answer 80 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Wei Min Chan
Top achievements
Rank 1
Wei Min Chan asked on 24 Jan 2008, 03:24 AM
How do you disable the element inspector module? (It is a module right?)

My modules collection is empty but it's still showing up.

1 Answer, 1 is accepted

Sort by
0
George
Telerik team
answered on 24 Jan 2008, 12:47 PM
Hi Wei Min Chan,

You can remove the RadEditorDomInspector  with the following code placed in the page's codebehind:

protected void Page_Load(object sender, EventArgs e)
{
    RadEditor1.Modules.RemoveAt(1);// the RadEditorDomInspector's  index is 1
}

Kind regards, George
the Telerik team


Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
Wei Min Chan
Top achievements
Rank 1
Answers by
George
Telerik team
Share this question
or