I've got a radEditor in a popup edit form template for a radGrid. I've set the editor's size like this:
I've set the external style sheets in my master page like this (I did because the editor was initially coming up about 1000px wide!):
The editor size is set exactly as I specified, but instead of the actual editing area being resized, I've got a bunch of empty space at the BOTTOM of the editor (see the attached image).
How can I get rid of the useless space at the bottom of the editor and make the editable area larger?
The screenshot is from IE 9. I'm using radControls for ASP.NET Ajax Q1 2012.
<
telerik:RadEditor
ID
=
"reItemText"
Runat
=
"server"
Width
=
"800"
Height
=
"300"
AutoResizeHeight
=
"false"
EnableResize
=
"false"
ToolsWidth
=
"800"
ContentAreaMode
=
"Div"
Skin
=
"WebBlue"
Content='<%# DataBinder.Eval(Container, "DataItem.ItemText") %>'>
</
telerik:RadEditor
>
I've set the external style sheets in my master page like this (I did because the editor was initially coming up about 1000px wide!):
<
telerik:RadStyleSheetManager
id
=
"RadStyleSheetManager1"
runat
=
"server"
>
<
StyleSheets
>
<
telerik:StyleSheetReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Skins.Editor.css"
/>
<
telerik:StyleSheetReference
Assembly
=
"Telerik.Web.UI.Skins"
Name
=
"Telerik.Web.UI.Skins.WebBlue.Editor.WebBlue.css"
/>
<
telerik:StyleSheetReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Skins.Window.css"
/>
<
telerik:StyleSheetReference
Assembly
=
"Telerik.Web.UI.Skins"
Name
=
"Telerik.Web.UI.Skins.WebBlue.Window.WebBlue.css"
/>
</
StyleSheets
>
</
telerik:RadStyleSheetManager
>
The editor size is set exactly as I specified, but instead of the actual editing area being resized, I've got a bunch of empty space at the BOTTOM of the editor (see the attached image).
How can I get rid of the useless space at the bottom of the editor and make the editable area larger?
The screenshot is from IE 9. I'm using radControls for ASP.NET Ajax Q1 2012.