RadEditor for ASP.NET AJAX

RadControls for ASP.NET AJAX

You can set the header and pop up width and height of a specified dropdown tool of RadEditor for ASP.NET AJAX:

  • inline in the RadEditor's declaration:

CopyASPX
<telerik:RadEditor runat="server" OnClientLoad="OnClientLoad" ID="RadEditor1">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="FontName" popupwidth="300px" popupheight="300px" width="300px" />
        </telerik:EditorToolGroup>
    </Tools>
</telerik:RadEditor>

  • through the ToolsFile.xml file:

CopyXML
<tools>    
    <tool name="FormatBlock" popupheight="250px"/>    
    <tool name="FontName" popupwidth="300px" />    
    <tool name="RealFontSize" width="200px"   />
</tools>
  • or through the codebehind: