Unplanned
Last Updated: 25 May 2020 14:45 by ADMIN

 

<telerik:RadDropDownTree RenderMode="Lightweight" ID="RadDropDownTree3" runat="server" Width="300px" DefaultMessage="Please select"
            DataFieldID="EmployeeID" DataFieldParentID="ReportsTo" DataTextField="LastName"
            DataSourceID="SqlDataSource1">
        </telerik:RadDropDownTree>
      
        <asp:SqlDataSource runat="server" OnSelecting="SqlDataSource1_Selecting" ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
            SelectCommand="SELECT * From Employees"></asp:SqlDataSource>
protected void SqlDataSource1_Selecting(object sender, SqlDataSourceSelectingEventArgs e)
{
    Label1.Text += "<br /> Sql request at:" + DateTime.Now.ToLongTimeString();
}

 

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: 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: 27 Nov 2014 12:03 by Elena
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>
Unplanned
Last Updated: 19 Sep 2017 14:59 by ADMIN
Reproduction: https://www.screencast.com/t/Y6HRTmGngkJ
Unplanned
Last Updated: 07 Aug 2020 10:58 by ADMIN
Created by: Steve
Comments: 1
Category: DropDownTree
Type: Feature Request
0
Two requests.

1. When filtering allow tree children to be unhidden if the parent matches the pattern. Maybe add filter by level (parent, child, both).

2. Add highlight capability to show all matching node filter patterns.
Won't Fix
Last Updated: 17 Dec 2018 11:38 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 1
Category: DropDownTree
Type: Bug Report
0

			
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
Declined
Last Updated: 28 Dec 2021 09:41 by ADMIN
Created by: Dan Avni
Comments: 1
Category: DropDownTree
Type: Feature Request
0
When the RadDropDownTree contains a lot of checked items, The tooltip of the control shows all items delimited with a semicolon. For large lists it is useless (especially if the page has RadToolTip which shows a huge tooltip on screen blocking the UI). Please add an option on the control properties to disable the control from updating it's tooltip (title attribute) when items are checked
Declined
Last Updated: 19 Oct 2023 08:22 by ADMIN

Hello,

 

I'm unsure whether this is an actual bug, but I can't seem to clear the selected text in the RadDropDownTree when i use UncheckAllNodes or UnselectAllNodes from the server side.

I try to to set SelectedText and SelectedValue on the RadDropDownTree control to string.Empty but neither works.

The nodes are unchecked though, but the text showing the previous selection is still visible after i  reload the page.

What should I do to also set the text to represent the selection done by UncheckAllNodes?

 

Kind regards,

Anders

1 2