Unplanned
Last Updated: 29 Jul 2016 13:09 by Neil
Created by: Neil
Comments: 0
Category: DropDownTree
Type: Feature Request
4
Would like the ability to bind raddropdowntree using a webservice (I have a tree structure that has 15,000+ items) while still having the ability to enable filtering. Currently you can do one or the other.
Unplanned
Last Updated: 01 Jun 2020 16:53 by ADMIN
Created by: Dan Avni
Comments: 6
Category: DropDownTree
Type: Feature Request
4
when there are a lot of items checked, the RadDropDownTree displays the names of the checked items and an ellipsis, Unlike the RadComboBox which displays "X items checked" or "All items checked" if the list of checked items is too long. Please add an option for behaving like the combobox UX "[N | All] Items checked". Users do not understand this is a different control and they think it's a combo but unlike the RadComboBox they are getting a different type of behavior when selecting multiple items
Unplanned
Last Updated: 30 Oct 2023 13:37 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: DropDownTree
Type: Feature Request
3

			
Unplanned
Last Updated: 22 Aug 2013 14:44 by ADMIN
ADMIN
Created by: Peter Filipov
Comments: 0
Category: DropDownTree
Type: Feature Request
2
1) Be able to get the level of a node in JS code
2) Have custom attributes that could be assigned to the drop down entries.
3) Force the tree of a selected node to be opened.
4) Be able to scroll to the selected node on opening the drop down for the first time (in the attached image I had to scroll quite a way to get the relevant node.)
Unplanned
Last Updated: 23 Aug 2013 15:14 by ADMIN
ADMIN
Created by: Peter Filipov
Comments: 0
Category: DropDownTree
Type: Feature Request
2

			
Unplanned
Last Updated: 17 Jan 2014 12:06 by ADMIN
Completed
Last Updated: 20 Nov 2013 09:19 by Elena
Completed
Last Updated: 16 May 2016 23:41 by Steven
Completed
Last Updated: 09 Mar 2015 13:34 by Frank
The DropDownTree pop-up is not positioned properly when the <form> is wrapped inside a relatively positioned element with fixed width.

The issue can be reproduced with a similar configuration:

    <div style="width: 700px; position: relative; left:300px">
        <form id="form1" runat="server">
            <telerik:RadScriptManager runat="server"></telerik:RadScriptManager>
            <div class="position">
                <telerik:RadDropDownTree runat="server" ID="ddt1" CssClass="dropDownTree"></telerik:RadDropDownTree>
            </div>
        </form>
    </div>
Unplanned
Last Updated: 01 Aug 2016 14:02 by Ahmad
Created by: Ahmad
Comments: 0
Category: DropDownTree
Type: Feature Request
1
Hi
Please add rtl support to RadDropDownTree.

Thanks
Completed
Last Updated: 29 Jul 2016 13:48 by ADMIN
Created by: Jon
Comments: 1
Category: DropDownTree
Type: Feature Request
1
All admin fields should have built in label controls.  Several such as RadTextBox do have built in labels and it is not that helpful when some other controls don't have the label functionality.  Makes for a messy page.  Please add in for this and other control types.
Completed
Last Updated: 09 Mar 2015 16:00 by Daniel
Hello,

Our company’s project needs the following functionality:
after dropdown in RadDropDownTree is closed, an event will fire - only ONCE – with all checked nodes.

Currently, NodeCheck event fires immediately for each node checked.
And, onEntryAdded event occurs after the dropdown is closed, but it is fired for each node checked.

Our project involves a lot of data. Therefore, many nodes can be checked by the user. It is unpractical that the event will be fired for each node checked, as this will harm our project’s functionality and performance. 

Thanks,
Daniel.
.Net Programmer at ISR Corp.
Completed
Last Updated: 22 Jun 2022 11:04 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 1
Category: DropDownTree
Type: Bug Report
1

			
Declined
Last Updated: 15 May 2017 13:09 by ADMIN
Created by: Simon
Comments: 1
Category: DropDownTree
Type: Feature Request
1
When using a RadDropDownTree with a fairly large number of items, a user may select quite a few of the items.

The current behaviour when the drop down is closed is that the names of only the first few selected items are shown, with no immediate visual feedback that more items are also selected (other than the tooltip). This can be misleading for users. 

I would like the ability to customise the message shown in the entry area, based on how many items are actually selected, e.g. "10 selected items, click here to review".

Completed
Last Updated: 18 Jan 2017 23:43 by Andre Light
Completed
Last Updated: 22 Jun 2022 12:20 by ADMIN
Unplanned
Last Updated: 15 May 2017 09:06 by ADMIN
Won't Fix
Last Updated: 08 Jun 2022 07:28 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 1
Category: DropDownTree
Type: Bug Report
1
Workaround 1;

input[type=text]::-ms-clear {
    display: none;
}

Workaround 2: 

// https://www.telerik.com/support/kb/aspnet-ajax/details/how-to-create-a-javascript-array-of-all-particular-radcontrols-on-the-page
function get_allRadDropDownTrees() {
    var allRadDropDownTrees = [];
    var allRadControls = $telerik.radControls;

    for (var i = 0; i < allRadControls.length; i++) {
        var element = allRadControls[i];

        if (Telerik.Web.UI.RadDropDownTree && element instanceof Telerik.Web.UI.RadDropDownTree) {
            Array.add(allRadDropDownTrees, element);
        }
    }
    return allRadDropDownTrees;
}


function fixClearButton(sender, args) {
    tree = sender;
    if ($telerik.isIE) {
        var dropDownTrees = get_allRadDropDownTrees();
        dropDownTrees.forEach(function (dropdowntree) {                       
            $telerik.$(dropdowntree.get_filterElement()).on('input', function (e, a) {
                if (!e.target.value) {
                    dropdowntree.filterByText("")
                }
            })
        })
    }
    Sys.Application.remove_load(fixClearButton);
}

Sys.Application.add_load(fixClearButton);



Workaround 3: 

var tree;
function OnClientLoad(sender, args) {
    tree = sender;
    if ($telerik.isIE) {
        $telerik.$(sender.get_filterElement()).on('input', function (e, a) {
            if (!e.target.value) {
                tree.filterByText("")
            }
        })
    }
}
1 2