Completed
Last Updated: 07 Aug 2015 07:14 by ADMIN
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>

Completed
Last Updated: 07 Jun 2016 08:57 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2
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>
Completed
Last Updated: 26 Jun 2014 11:44 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by stefano
Completed
Last Updated: 14 Sep 2021 10:21 by ADMIN
Release Q1 2015
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.
Declined
Last Updated: 24 Oct 2017 09:57 by ADMIN
Created by: Imported User
Comments: 14
Category: UI for ASP.NET AJAX
Type: Feature Request
23
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/
Completed
Last Updated: 30 Jun 2014 10:52 by ADMIN
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
Completed
Last Updated: 24 Jun 2014 08:50 by ADMIN
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.
Completed
Last Updated: 06 Oct 2015 14:16 by ADMIN
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. 
Completed
Last Updated: 06 Oct 2014 08:53 by ADMIN
Completed
Last Updated: 07 Jan 2015 13:06 by ADMIN
ADMIN
Created by: Angel Petrov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
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.
Completed
Last Updated: 27 Jan 2015 15:20 by ADMIN
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>
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 02 Jul 2014 14:33 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
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>
Duplicated
Last Updated: 21 Apr 2022 07:51 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
7
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.
Completed
Last Updated: 09 Nov 2015 12:37 by ADMIN
The issue with incorrectly counted header elements comes due to the reason that the main table considers the TH elements as child elements no matter if they are nested in a second table.

You can find attached a simple project with the fixed AccessibleTable dialog set as external.
Won't Fix
Last Updated: 02 Oct 2015 08:56 by ADMIN
Navigate to:

http://localdemos.telerik.com/aspnet-ajax/treelist/examples/databinding/loadondemand/defaultcs.aspx

1) Expand item with ID:2, then items: id:1413, id:1414

2)Expand item id:1

3)Fill Item ID textbox with "303" and Level textbox with "2"

4)Click "ExpandItemToLevel"

5)The icon of item 304 seems like "expanded"(and it should be), however the item is not expanded.
Completed
Last Updated: 02 Oct 2014 13:04 by Antonio Bakula
When a user works with large content in the editor and pastes a word in the end of it, the page and content area are scrolled to the top. This causes an inconvenience for the editing behavior, the user should scroll down to continue typing or editing.