I have a problem with unwanted extra space appearing at the bottom of RadEditor.
The Editor is within an edit template within a RadGrid.
It initially loads without the extra space, then flickers and expands to add the space at the bottom.
A screenshot is shown on the image link above if you can see it.
The aspx is shown below.
I would be grateful for any advice about to stop this behaviour.
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False"
GridLines="None" Width="869px" Skin="Hay">
<MasterTableView DataKeyNames="addressID">
<NoRecordsTemplate>
No Records found
</NoRecordsTemplate>
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn Visible="False" Resizable="False">
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="addressid" HeaderText="addressid" UniqueName="addressid"
ReadOnly="True" Visible="False">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="shortcut" HeaderText="Shortcut"
UniqueName="shortcut" ReadOnly="True">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="shortaddress" HeaderText="Address"
ReadOnly="True" UniqueName="shortaddress">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="address" HeaderText="address"
UniqueName="address" ReadOnly="True" Visible="False">
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn UniqueName="TemplateColumn" >
<EditItemTemplate>
<asp:LinkButton runat="server" CommandName="Update" Text="Update"></asp:LinkButton>
<asp:LinkButton runat="server" CausesValidation="false" CommandName="Cancel"
Text="Cancel"></asp:LinkButton>
<br />
Shortcut:
<asp:TextBox ID="txtShortcut" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "shortcut") %>'></asp:TextBox>
<br />
<telerik:RadEditor ID="Editor" runat="server" Height="200" Width="806px"
ToolsWidth="570px" HasPermission="true"
Editable="true" ImagesPaths="~/Img" ShowHtmlMode="false"
ShowSubmitCancelButtons="false" SaveInFile="false" Html='<%# DataBinder.Eval(Container.DataItem, "address") %>'
Skin="Outlook" EditModes="Design, Html" AutoResizeHeight="True">
<Tools>
<telerik:EditorToolGroup Tag="Formatting">
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="Italic" />
<telerik:EditorTool Name="Underline" />
<telerik:EditorTool Name="StrikeThrough" />
<telerik:EditorTool Name="Subscript" />
<telerik:EditorTool Name="Superscript" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup Tag="Cutpaste">
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Paste" />
<telerik:EditorTool Name="PastePlainText" />
<telerik:EditorTool Name="Undo" />
<telerik:EditorTool Name="Redo" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup Tag="Justify">
<telerik:EditorTool Name="JustifyLeft" />
<telerik:EditorTool Name="JustifyCenter" />
<telerik:EditorTool Name="JustifyRight" />
<telerik:EditorTool Name="JustifyFull" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup Tag="Indenting">
<telerik:EditorTool Name="Indent" />
<telerik:EditorTool Name="Outdent" />
<telerik:EditorTool Name="InsertUnorderedList" />
<telerik:EditorTool Name="InsertOrderedList" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup Tag="Tools">
<telerik:EditorTool Name="InsertTable" />
<telerik:EditorTool Name="InsertSymbol" />
<telerik:EditorTool Name="AjaxSpellCheck" />
<telerik:EditorTool Name="InsertSnippet" />
<telerik:EditorTool Name="ToggleScreenMode" />
<telerik:EditorTool Name="Help" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</
Content>
</telerik:RadEditor>
</EditItemTemplate>
<ItemTemplate>
<asp:LinkButton runat="server" CausesValidation="false" CommandName="Edit" Text="Edit"></asp:LinkButton>
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
<EditFormSettings>
<PopUpSettings ScrollBars="None"></PopUpSettings>
</EditFormSettings>
<PagerTemplate>
shortcut
</PagerTemplate>
<CommandItemTemplate>
shortaddress
</CommandItemTemplate>
</MasterTableView>
</telerik:RadGrid>