I have a RadEditor in my web application defined as follows:
<tr>
<th style="text-align: right; vertical-align: top;">
<asp:Label ID="lblQuestion" runat="server" Text="Question"></asp:Label>
</th>
<td style="text-align: left; vertical-align: top;">
<telerik:RadEditor ID="redQuestion" runat="server" EditModes="Design" Skin="Bootstrap" ToolsFile="~/EditorTools.xml" Width="100%" Height="150px" BorderStyle="Solid" BorderColor="Black" BorderWidth="1">
</telerik:RadEditor>
</td>
</tr>
When I run, I cannot grab the corner of the RadEditor and resize the text area, but if I remove the EditModes="DESIGN" property, then the grabber appears in the lower right corner and I can resize the text area.
I found this article on the forum that said to specify the style below, but it did not resolve my issue.
<style type="text/css">
.reToolZone table tr
{
display: block !important;
}
</style>
Can anyone offer any suggestions or insight into how to have DESIGN mode but still be able to resize the text area?