We have only Save and Cancel buttons in our toolbar and it works properly when its position is set at the top. But we would like to move these buttons to the bottom of the editor.
When I set DockingZone="Bottom" in the Tools File with the following editor configuration, deleting some text from the editor reduces the Iframe height to a larget extent (more than what it shoud). Because of this scrollbars get added. When delete button is pressed few more times, editor size shrinks to a non-usable size and eventually errors out when an attempt is made to set a negative height to the iframe element.
<telerik:radeditor
ID="RadEditor1"
runat="server"
EditModes="Design,Html"
AutoResizeHeight="true"
EnableViewState="true"
BorderWidth="0"
Skin="Telerik"
ToolsFile="../RadControls/Editor/ToolsFile.xml"
style="padding:1px;"
EnableResize="false">
<ContextMenus>
<telerik:EditorContextMenu Enabled="false" />
<telerik:EditorContextMenu TagName="IMG" Enabled="false" />
<telerik:EditorContextMenu TagName="TABLE" Enabled="false" />
</ContextMenus>
</telerik:radeditor>
ToolsFile.XML
<root>
<tools name="MainToolbar" DockingZone="Bottom">
<tool name="Save" />
<tool name="Cancel" />
</tools>
</root>
Like I mentioned before, when DockingZone is set to "top" everything works properly.
Please help!
Thanks, Lakshman