Completed
Last Updated: 20 Sep 2016 06:51 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 19 Aug 2019 12:26 by ADMIN
Completed
Last Updated: 16 Jan 2020 13:02 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Would like a code sample of connecting to Active Directory/LDAP so in the RadComboBox  you can start looking up someone in the company phone book. 
Since this is a common Intranet need, this would be a quick win for many people that were not planning to install SharePoint.
Completed
Last Updated: 27 Mar 2019 18:12 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Steps to Reproduce:
1) bold a non tracked word
2) Append an "s" (or other letter) to the previous non tracked word
3) delete the space between the previous word and the bolded word

Actual: the tracking will delete the first letter of the bolded word

Expected: the space should be deleted

Workaround:
<telerik:RadEditor ID="RadEditor1" runat="server" EnableTrackChanges="true">
	<Content>
		<p>some plain text</p>
	</Content>
</telerik:RadEditor>
<script>
	(function ($, $E, undefined) {
		var utils = $E.Utils;
		utils.isInlineSpace = utils.isInlineSpace || function (node) {
			return utils.isTextNodeEmpty(node) && node.previousSibling && node.nextSibling &&
				!utils.isBlockElement(node.previousSibling) && !utils.isBlockElement(node.nextSibling);
		};
		var isSignificantTextNode = function (node) {
			return utils.isTextNode(node) && (!utils.isTextNodeEmpty(node) || utils.isInlineSpace(node));
		};
		var prototype = $E.PlainTextSelector.prototype;
		$E.PlainTextSelector = function (toLeft, topNode) {
			this.toLeft = toLeft;
			var condition = toLeft ?
								function (node, position) { return isSignificantTextNode(node) && (position > 0 && position <= node.nodeValue.length); } :
								function (node, position) { return isSignificantTextNode(node) && (position >= 0 && position < node.nodeValue.length); };

			this.traverser = new $E.DomTreeTraverser(condition, topNode);
		};
		$E.PlainTextSelector.prototype = prototype;
	})($telerik.$, Telerik.Web.UI.Editor);
</script>
Completed
Last Updated: 30 Aug 2016 08:32 by ADMIN
Workaround:

<script>
    var $ = $telerik.$;
    Telerik.Web.UI.RadMenuItem.prototype._doAriaFocus = function () {
        var menu = this.get_menu();
        var menuId = menu.get_id() + "_active";

        $(this.get_element()).attr("id", menuId);
        $(menu._getMainElement()).attr("aria-activedescendant", menuId);
    }
</script>
Completed
Last Updated: 28 Jul 2016 13:42 by Vinod
Created by: Vinod
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When the data is initially grouped and later grouping is collapsed, the group does not expand on click again.
The class rgExpand does not change to rgCollapse class.

It works with Telerik.Web.UI.dll version 2014.2.618.40 (release 1/14/2016?)

However, when we upgraded to 2016.2.504.40 (release 5/9/2016?), it is stuck in "Collapse" mode. Cannot expand again in when clicked on the arrow.
Completed
Last Updated: 28 Jun 2019 11:02 by ADMIN
Completed
Last Updated: 01 Sep 2016 15:38 by ADMIN
ADMIN
Created by: Pavlina
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 20 Jun 2017 14:52 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 30 Mar 2020 07:31 by ADMIN
Created by: Amy
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
An updated version of a sample application using the WIRIS editor plugin within the RadEditor.  Ideally with the ability to save the content and retrieve it.

http://www.wiris.com/plugins/docs/radeditor
Completed
Last Updated: 06 Jul 2016 10:58 by ADMIN
The SlidingZone's tabs titles are rendered upside-down in all browsers in Sharepoint 2010 (except for Internet Explorer). The problem is caused due to a thrown JavaScript error:
Uncaught TypeError: Cannot read property 'removeChild' of null
Completed
Last Updated: 19 Sep 2016 14:29 by Wagner
Completed
Last Updated: 15 Sep 2016 08:53 by ADMIN
Completed
Last Updated: 29 Jun 2016 08:58 by ADMIN
The OK and Cancel buttons of the Link Manager are cut off in Silk skin in Classic mode. The issue is introduced in 2016 R2 release.
Completed
Last Updated: 04 Mar 2021 09:40 by ADMIN
Created by: Phil H.
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
It would be great if you had a theme/skin for all products, that one could mock-up the page and print it out, but that it would look as if is just some sort of a drawing or sketch.  Once the page was moved from design to development one could change the theme/skin and it would look completely different.

Phil
Completed
Last Updated: 30 Sep 2016 15:38 by ADMIN
The droppdown tools of RadEditor are not fully visible when ToolbarMode = "RibbonBarFloating" in LightWight.

Reproduction code:
        <telerik:RadEditor ID="reBody" runat="server" ToolbarMode="RibbonBarFloating" RenderMode="Lightweight">
        </telerik:RadEditor>
Completed
Last Updated: 31 May 2016 13:28 by ADMIN
The workaround is to use the RadEditor's tab functionality instead of browser's.

<telerik:RadEditor ID="RadEditor1" runat="server" OnClientLoad="OnClientLoad">
    <Content>
        <p>test</p>
        <p>test</p>
    </Content>
</telerik:RadEditor>

<script>
    function OnClientLoad(editor, args) {
        var shortcutManager = editor.get_shortCutManager();
        if (shortcutManager.findShortCutByName("InsertTabMozilla")) {
            shortcutManager.removeShortCut("InsertTabMozilla");
            editor.addShortCut("InsertTab", "TAB");
        }
    }
</script>
Declined
Last Updated: 20 May 2016 07:50 by ADMIN
Created by: Sundeep
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Drag and drop functionality works great. But when i drag and drop email from outlook into kendo upload control, it was unable to read it. Any solution? appreciate your help. 

Thanks,
Sundeep.