Completed
Last Updated: 02 Sep 2019 15:28 by ADMIN
Created by: luis.mauricio
Comments: 1
Category: DropDownTree
Type: Feature Request
0
Cannot add a label to a RadDropDownTree
Completed
Last Updated: 22 Jun 2022 12:20 by ADMIN
Completed
Last Updated: 18 Jan 2017 23:43 by Andre Light
Completed
Last Updated: 22 Jun 2022 11:04 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 1
Category: DropDownTree
Type: Bug Report
1

			
Completed
Last Updated: 26 May 2015 09:37 by ADMIN
ADMIN
Created by: Nencho
Comments: 0
Category: DropDownTree
Type: Bug Report
0
In order to workaround this bug, you can handle the OnClientNodeClicking client-side event of the embeddedTree and cancel the propagation of the event if the node that is about to be selected is disabled:

 protected void Page_Load(object sender, EventArgs e)
 {
        Reporting.EmbeddedTree.OnClientNodeClicking = "OnClientNodeClicking";
 }

<script type="text/javascript">
            function OnClientNodeClicking(sender, args) {
                var nodeToSelect = args.get_node();

                if (!nodeToSelect.get_enabled())
                    args.set_cancel(true);
            }
        </script>
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: 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: 27 Nov 2014 12:03 by Elena
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>
Completed
Last Updated: 16 May 2016 23:41 by Steven
Completed
Last Updated: 10 Sep 2013 11:54 by ADMIN
Created by: MohanKumar
Comments: 1
Category: DropDownTree
Type: Bug Report
0
Validation is not working as expected in Dropdowntree. In the demo page http://demos.telerik.com/aspnet-ajax/dropdowntree/examples/validation/defaultcs.aspx, if any one node is checked, the validation message "You need to select a type or a category before submitting the page" is displayed. If multiple checkboxes are checked, the message is not displayed. I do not want the validation message displayed when  check box is  checked.
Completed
Last Updated: 14 Mar 2014 10:29 by Jerry
Created by: Jerry
Comments: 0
Category: DropDownTree
Type: Bug Report
0
When I set the RadDropDownTree Enbaled as False, the Clear button still working and clear the Selected value.
Completed
Last Updated: 20 Nov 2013 09:19 by Elena