If I resize an editor larger using the UI handle I can't seem to resize it smaller in width. Resizing the height smaller works, but not width. Using setSize seems to have the same issue. I've tried with IE8 and FF. Anyone else seeing this behavior?.
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd
<telerik:RadEditor ID="RadEditor1" runat="server" Width="500" Height="500"></telerik:RadEditor>
<input type="button" onclick="resizeE();" value="Resize to 200x200" />
<script type="text/javascript">
function resizeE() {
var e = $find("<%=this.RadEditor1.ClientID %>");
e.setSize(200, 200);
}
</script>