New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
RadEditor does not allow manual resize since the resize handle is hidden
Environment
Product | RadEditor for ASP.NET AJAX |
Description
The resize handle gets hidden when EditModes is set to Design in Classic render mode. See how to activate it and solve the issue.
Solution
There are two approaches to allow the resizing:
- Set the RenderMode to Lightweight and the resize handler will appear when the EditModes property is set to Design.
- or Keep the RenderMode to Classic, but not set the EditModes. Instead of this hide the Design, Html and Preview buttons with a CSS class:
ASP.NET
<telerik:RadEditor ID="redQuestion" runat="server" EditModes="Design" Skin="Bootstrap" Width="100%" Height="350px" RenderMode="Classic" BorderStyle="Solid" BorderColor="Black" BorderWidth="1" />
CSS
.reEditorModes {
display: none;
}