Removing the Space Below the Design, HTML, and Preview Buttons
Environment
Product | RadEditor for ASP.NET AJAX |
---|---|
Version | all |
Description
When using RadEditor for ASP.NET AJAX, you may notice a big space below the Design, HTML, and Preview buttons. This space is reserved for the RadEditorDomInspector and RadEditorNodeInspector modules.
Solution
To remove the space below the Design, HTML, and Preview buttons, you can hide the RadEditorDomInspector and RadEditorNodeInspector modules by setting their visible
attributes to "false" in the ToolsFile.xml file. Here are the steps to do so:
- Locate the ToolsFile.xml file in your project.
- Open the ToolsFile.xml file in a text editor.
-
Find the following lines:
<module name="RadEditorDomInspector" visible="true" /> <module name="RadEditorNodeInspector" visible="true" />
-
Change the
visible
attribute of both lines to "false", like this:<module name="RadEditorDomInspector" visible="false" /> <module name="RadEditorNodeInspector" visible="false" />
Save the ToolsFile.xml file.
After following these steps, the space below the Design, HTML, and Preview buttons in RadGrid for ASP.NET AJAX will be removed.
Notes
- Make sure to backup the ToolsFile.xml file before making any changes.
- Hiding the RadEditorDomInspector and RadEditorNodeInspector modules will remove their functionality from the editor.