The selected image in SharePoint RadEditor's Image Manager dialog is not displayed when edited in the Image Editor in IE when the property ImageManagerViewMode of the editor is set to Grid.
Certain controls just add bloat to a page. Like the RadListView is a GREAT control to use inplace of the asp Repeater, but I find I often don't use it (or limit it's use) because it brings down 99.9% useless client scripts. Most of the time, especially in Sitefinity its a server-side render-only control. Just used to show data...we don't need ANY client manipulation.
We need the exactly the same control that the guys over in Silverlight have: http://www.telerik.com/products/silverlight/expressioneditor.aspx I am in desperate need of this control in the ASP.Net platform.
The issue is due to failing recalculation logic of the iframe content area. 
To resolve the issue you can use a RadEditor control with ContentAreaMode="Div" to render the content area as a DIV element, instead iframe.  
If the iframe mode is needed, you can use the following workaround to fix the content cell and the iframe appearance. 
<telerik:RadEditor ID="RadEditor1" runat="server" height="50px" OnClientLoad="OnClientLoad">
	<Tools>
		<telerik:EditorToolGroup>
			<telerik:EditorTool Name="Bold" />
			<telerik:EditorTool Name="Italic" />
			<telerik:EditorTool Name="Underline" />
		</telerik:EditorToolGroup>
	</Tools>
</telerik:RadEditor>
<script type="text/javascript">
	function OnClientLoad(editor, args) {
		setTimeout(function () {
			var editorIframe = editor.get_contentAreaElement(),
				originalIframeHeight = editorIframe.offsetHeight,
				contentCell = editorIframe.parentNode,
				cellSize = contentCell.offsetHeight,
				isCellSmaller = (originalIframeHeight - cellSize) > 2;
		
			if (isCellSmaller) {
				contentCell.style.height = originalIframeHeight + "px";
			}
		}, 0);
	}
</script>
			Such functionality would improve the user experience for UI interaction of the end-users with the RadEditor tools.
Such behavior can be achieved using the following customization with the RadEditor control:
<telerik:RadEditor ID="RadEditor1" runat="server" OnClientLoad="OnClientLoad">
</telerik:RadEditor>
<script>
    function OnClientLoad(editor, args) {
        editor.attachEventHandler("onkeyup", function (e) {
            if (e.keyCode == 27)
            {
                closeContextMenus(editor.get_toolAdapter()._contextMenus);
            }
        })
    }
    function closeContextMenus(contextMenus) {
        for (var menu in contextMenus) {
            contextMenus[menu].hide();
        }
    }
</script>
			The problem is when not tracked content does not exist. User cannot set the cursor outside the tracked content. Although, typing should split the tracked text and user should be able to type in not tracked text when the feature is disabled.
I think you may consider the following similar type of control(s) in future release. I think the following is a good fit for use between a BI solution and standard reports. It gives regular users some flexibilities to generate ad-hoc queries within an application. http://demo.easyquerybuilder.com/asp-net-ajax/
In case where RadButton is set as DefaultButton to the form or a panel and should trigger validation it does not PostBack the page regardless if the page is valid or not
Button single click becomes disabled permanently if a validation error is detected. After satisfying the validator conditions the button doesn't get enabled and it is not possible to post back the page.
This issue happens only under IE11 with IE9 compatibility mode. Using real IE9 browser the area is rendered correctly. You should be aware of this issue when testing cross browser functionality of the RadEditor.
With the current implementation if the RenderMode is set to Auto in the web.config file it is later automatically changed to Leightweight instead of Mobile.
When the editor is loaded with a full HTML page editable document, which contains nested tables with images inside, selecting an image causes the Chrome browser to break. 
Possible workaround is disabling the resize widget of the tables and images in Chrome by incorporating this sample code:
<telerik:RadEditor ID="RadEditor1" runat="server">
</telerik:RadEditor>
<script type="text/javascript">
    Telerik.Web.UI.RadEditor.prototype._initializeResizableWidget =
        function myfunction() { };
</script>
			This bug causes incorrect user behavior. Lists cannot be disconnected with Enter, in some cases user cannot add multiple empty paragraphs. 
For the time being you can resolve the issue by incorporating the following JS code block:
<telerik:RadEditor runat="server" ID="RadEditor1">
</telerik:RadEditor>
<script type="text/javascript">
    var setCursorFn = Telerik.Web.UI.Editor.Utils._setCursorInNode;
    Telerik.Web.UI.Editor.Utils._setCursorInNode = function (cursorElement, container, editor) {
        setCursorFn.call(this, cursorElement, container, editor);
        if ($telerik.isChrome) {
            var selection = editor.getSelection();
            var range = selection.getRange();
            if (!range.collapsed) {
                range.collapse();
                selection.selectRange(range);
            }
        }
    }
</script>
			This is the popular image zoom control used in many sites like amazon.com to display a zoomed selection of an image in another panel or window.