New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

ReadEditor Word Count is not shown when EditModes is set to Design

Environment

Product Version all
Product RadEditor for ASP.NET AJAX

Description

ReadEditor Word and Symbol Count is not shown when EditModes property is set to Design.

Solution

When the EditModes property is set to Design mode, the whole bottom area gets hidden along the Design, HTML and Preview buttons along with the Statistics Module. To show it once again, define it explicitly as shown below:

<telerik:RadEditor ID="RadEditor1" MaxTextLength="10" runat="server" EditModes="Design" Height="200">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="Bold" />
            <telerik:EditorTool Name="Italic" />
            <telerik:EditorTool Name="Underline" />
        </telerik:EditorToolGroup>
    </Tools>
    <Modules>
        <telerik:EditorModule Name="RadEditorStatistics" />
    </Modules>
</telerik:RadEditor>

You can find more information in this article: Disable or Hide Modules.

In this article