RadEditor for ASP.NET AJAX

RadControls for ASP.NET AJAX

The RadEditor Toolbar position can be changed by using the DockingZone attribute which can have the following values:

  1. Left

  2. Right

  3. Top

  4. Bottom

  5. Module

  6. The id of outer html element

     

Here is an example how to:

  • Set Toolbar position in the RadEditor declaration:

    CopyXML
    <tools>   
        <telerik:EditorToolGroup DockingZone="Left">        
            <telerik:EditorTool Name="AjaxSpellCheck" />        
            .................   
        </telerik:EditorToolGroup> 
    </tools>
  • Set Toolbar position in the ToolsFile

    CopyXML
    <tools enabled="true" dockingzone="Bottom">    
        <tool name="Bold" />    
        .....................
    </tools>
  • Set the tools programmatically in the codebehind: