Skip to content

Commit 58ab222

Browse files
committed
kb(editor): enable the resizing
1 parent 7acb63e commit 58ab222

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: RadEditor does not allow manual resize since the resize handle is hidden
3+
description: The resize handle is hidden when EditModes is set to Design in Classic render mode. See how to activate it.
4+
type: troubleshooting
5+
page_title: The resize handle gets hidden when EditModes is set to Default in Classic render mode
6+
slug: editor-resizing-is-disabled
7+
position:
8+
tags:
9+
ticketid: 1577867
10+
res_type: kb
11+
---
12+
13+
## Environment
14+
<table>
15+
<tbody>
16+
<tr>
17+
<td>Product</td>
18+
<td>RadEditor for ASP.NET AJAX</td>
19+
</tr>
20+
</tbody>
21+
</table>
22+
23+
24+
## Description
25+
The resize handle gets hidden when EditModes is set to Design in Classic render mode. See how to activate it and solve the issue.
26+
27+
## Solution
28+
There are two approaches to allow the resizing:
29+
30+
* Set the RenderMode to Lightweight and the resize handler will appear when the EditModes property is set to Design.
31+
* 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:
32+
````ASPX
33+
<style>
34+
.reEditorModes {
35+
display: none;
36+
}
37+
</style>
38+
<telerik:RadEditor ID="redQuestion" runat="server" EditModes="Design" Skin="Bootstrap" Width="100%" Height="350px" RenderMode="Classic" BorderStyle="Solid" BorderColor="Black" BorderWidth="1">
39+
</telerik:RadEditor>
40+
````
41+
42+

0 commit comments

Comments
 (0)