Completed
Last Updated: 12 Apr 2023 14:39 by ADMIN
Release R2.2023-Increment.2(26.Apr.2023)

Bug report

Pressing the clear button of the DropDownTree does not change the component's value in the change event.

Reproduction of the problem

  1. Open this Dojo - https://dojo.telerik.com/aREzEWaK/13
  2. Open the browser console
  3. Select an item
  4. Press the clear button

Current behavior

The value is the same as before pressing the button

Expected/desired behavior

The value should be an empty string after pressing the clear button

Environment

  • Kendo UI version: 2023.1.117
  • Browser: [all]
Unplanned
Last Updated: 01 Dec 2022 16:51 by Bill

Bug report

If the DropDownTree is configured without checkboxes (single selection), the X button shouldn't be present.

Reproduction of the problem

  1. Open this demo - https://demos.telerik.com/kendo-ui/dropdowntree/index
  2. Select an item from the DropDownTree

Current behavior

The clear button appears

Expected/desired behavior

The clear button shouldn't be present.

Environment

  • Kendo UI version: 2022.3.1109
  • Browser: [all]
Unplanned
Last Updated: 16 Sep 2022 13:11 by ADMIN

Enhancement

Currently, when checkboxes are enabled, the selected items cannot be sent to a remote end-point via form submit. Research possible workarounds for the senario - rendering an additional input elements, parsing or other suitable approach that allows submitting the value of the widget.

Unplanned
Last Updated: 13 Sep 2022 17:21 by Boris
Created by: Nasser
Comments: 6
Category: DropDownTree
Type: Feature Request
11
Implement server filtering for the DropDownTree.
Unplanned
Last Updated: 12 Sep 2022 09:19 by Shubhan

Hi Team,

 

It's an issue in keyboard navigation support for DropDown Tree, where am not able to scroll to the end node. Given the scenario in below link

https://dojo.telerik.com/IROwUrot

 

Am using  2019.2.619 version.

 

 

Regards,

Minati

Unplanned
Last Updated: 05 Apr 2022 21:01 by gjb
Created by: gjb
Comments: 0
Category: DropDownTree
Type: Feature Request
2
The dropdown tree is very useful. 

I have a suggestion to improve this, which would be highly appreciated by my customers:

Add a suggest possibility, the same as the suggest possibility that already is available on the combobox.

People start to type in the search box, most of time finding the one option they need, than they first have to select the option (mouse or arrows, plus enter). It would be nice if the result (when it is one result) is already selected and they should have only to press enter.
Declined
Last Updated: 11 Mar 2022 10:25 by ADMIN

Using setDataSource method on a working DropDownTree, with same initial settings leads to not working clea button and not expanding a collapsed node. 

Dojo: https://dojo.telerik.com/uLUNudEJ 

Steps (clear button):

1. Open dojo and check that everything works correctly

2. Click reload button (calls setDataSource)

3. Clear all button does not work and cannot deselect the item from the tag's clear button.

 

Steps (expand):

1. Open dojo and open popup to see everything expands as expected

2. Click reload

3. Open popup

4. The last (initially collapsed) node cannot be expanded.

Completed
Last Updated: 07 Oct 2021 08:40 by ADMIN
Release 2020.R3.SP.next

Bug report

Reproduction of the problem

Dojo example: http://dojo.telerik.com/ePEPAtEl/3
Two scenarios:

  1. The DropDownTree's height is set to "auto" and there are enough nodes in the embedded treeview, so that the when the popup shows up a vertical scrollbar appears. In Chrome and IE, when the scrollbar appears the page is scrolled down automatically, which causes the popup to close.

  2. height is not set explicitly in the DropDownTree (remove the setting from the dojo example). If the browser window is resized so that there isn't enough space for the whole popup to be displayed, on the popup showing up, the same behavior as in 1. is observed.

Current behavior

The popup closes automatically.

Expected/desired behavior

The popup remains open.

Environment

  • Kendo UI version: 2020.3.915
  • jQuery version: x.y
  • Browser: [Chrome 85 | IE11 ]
Unplanned
Last Updated: 28 Sep 2021 11:52 by Mikael
Created by: Mikael
Comments: 0
Category: DropDownTree
Type: Bug Report
1

Bug report

The DropDownTree validation error message appears when the widget gets opened. The message appears before the user is able to select an item. The behavior is not consistent with the validation of the rest of the widgets, such as DropDownList, for example.

Reproduction of the problem

  1. Open the Dojo example
  2. Expand the DropDownTree

Scenario 2: DropDownTree in a Form - Dojo

Current behavior

The DropDownTree is validated on open, thus it is marked as invalid before the user has the possibility to select an item.

Expected/desired behavior

The validation of the DropDownList should be consistent with the rest of the widgets. It should be validated when it is focused out

Environment

  • Kendo UI version: 2021.3.914
  • Browser: [all ]
Unplanned
Last Updated: 28 Apr 2021 09:18 by Derek
Created by: Derek
Comments: 0
Category: DropDownTree
Type: Bug Report
1

Bug report

The DropDownTree's refresh API method re-renders only the noDataTemplate and the footerTemplate. The nodes are not re-rendered.

Reproduction of the problem

Current behavior

Only the noDataTemplate and the footerTemplate are re-rendered.

Expected/desired behavior

The method should also re-render the nodes, similarly to the DropDownList's refresh method, which re-renders its items.

Environment

  • Kendo UI version: 2021.1.330
  • jQuery version: x.y
  • Browser: [all]
Declined
Last Updated: 30 Mar 2021 14:25 by ADMIN
Created by: Hector
Comments: 1
Category: DropDownTree
Type: Bug Report
0

Hi
I have a problem with the DropDownTree component.
From a remote data source type json I am getting a tree with two levels of data but it only shows the first level.

Code:

$("#dropdowntree").kendoDropDownTree({
	dataSource: {
		transport: {
			read: {
				url: "/api/getData",
				type: "POST",
				dataType: "json",
				contentType: "application/json; charset=utf-8"
			}
		}
	},
	checkboxes: true
});

Response:

[
	{
		text: "Furniture", expanded: true, items: [
			{ text: "Tables & Chairs" },
			{ text: "Sofas" },
			{ text: "Occasional Furniture" }
		]
	},
	{
		text: "Decor", items: [
			{ text: "Bed Linen" },
			{ text: "Curtains & Blinds" },
			{ text: "Carpets" }
		]
	}
]
But if I set the data from a js object it shows the two levels correctly
$("#dropdowntree").kendoDropDownTree({
	dataSource: {
		data: [
			{
				text: "Furniture", expanded: true, items: [
					{ text: "Tables & Chairs" },
					{ text: "Sofas" },
					{ text: "Occasional Furniture" }
				]
			},
			{
				text: "Decor", items: [
					{ text: "Bed Linen" },
					{ text: "Curtains & Blinds" },
					{ text: "Carpets" }
				]
			}
		]
	},
	checkboxes: true
});
Previously it worked, I don't know which version of kendo stopped working.
How can I solve it with a single request to the server?
Unplanned
Last Updated: 05 Mar 2021 09:39 by ADMIN
Currently the scenario where both filtering and checkboxes.checkChildren are enabled is not supported. This is a very useful feature especially when the dropdown list is long.
Unplanned
Last Updated: 30 Jun 2020 10:27 by ADMIN

Please Implement Cleaner "Fully Loaded" Event Instead of Multiple onDataBound Checks as per recommended per this approach:  https://docs.telerik.com/kendo-ui/knowledge-base/dropdowntree-fully-loaded

That works fine, but if I have multiple DropDownTree elements on the page, this is a lot of extraneous code. Could this not be encapsulated within the library with a true event?

Perhaps it could be something like "contentLoaded" or "treeeInitialized". 

 

In my case I would then use it to fulfill a Promise or other actions.

Unplanned
Last Updated: 08 Jun 2020 06:05 by ADMIN
Created by: Saravanamanikandan
Comments: 1
Category: DropDownTree
Type: Bug Report
0

Hello Team,

 

Please refer this DoJo - http://dojo.telerik.com/@SaravanaMS/utINiRUq

We have a dropdowntree component added in a grid and when we collapse the dropdowntree options - dropdowm box stays at top.

 

Steps to reproduce - 

1. open all options from top to bottom 

2. collapse the option from bottom to top

3. once the top option is collapsed - dropdown box stays at top

Completed
Last Updated: 23 Mar 2020 08:50 by ADMIN
Release 2020.R1.SP.next

Bug report

Regression introduced in R1 2020.

Reproduction of the problem

Reproducible in the demo.

  1. Focus the DropDownTree.
  2. Click the "Check all" checkbox.

Current behavior

The DropDownTree items are not checked. The issue is reproducible only if the checkbox is clicked. Clicking its label, or checking the checkbox with the keyboard (Space key) checks all items as expected.

Expected/desired behavior

All items are checked.

Environment

  • Kendo UI version: 2020.1.219
  • jQuery version: x.y
  • Browser: [IE, Edge(Spartan) ]
Unplanned
Last Updated: 25 Feb 2020 13:20 by ADMIN
Allow other widgets to cascade from the DropDownTree through the cascadeFrom option.
Unplanned
Last Updated: 03 Feb 2020 08:59 by ADMIN

It would be nice to have the functionality to dynamically switch tagNodes, this feature would help sort out the issue of expanding the dropdown if many selections have been made .i.e.

It should show like the image below instead

It would also be great to add the feature to auto-select the parent's children and their sub children if the parent is checked.

The workaround for these issues is available on  this dojo

Completed
Last Updated: 15 Jan 2020 14:54 by ADMIN
Created by: Michael
Comments: 1
Category: DropDownTree
Type: Feature Request
0
Add the parent method for DropDownTree that functions the same as the parent method in  the TreeView widget.
Completed
Last Updated: 13 Jan 2020 09:20 by ADMIN
Release R1 2020

Bug report

Unexpected change event triggering when using value() method of remote datasource DropDownTree with checkboxes and autoBind false

Reproduction of the problem

  1. Run the following Dojo
  2. Click on Load button to set the value of the Child item

Current behavior

Script runs through datasource read else, then through datasource read if and then DropDownTree's change event is fired.

NOTE: if there is no setTimeout or if the two nodes are loaded at the same time with no if else clause, then the issue is not reproducible.

Expected/desired behavior

DropDownTree's change event is not fired, when value() method is called.

Environment

  • Kendo UI version: 2019.2.619
  • Browser: [all]

Similar fixed issue: #4352

Unplanned
Last Updated: 20 Dec 2019 11:53 by ADMIN
Created by: Samuel
Comments: 1
Category: DropDownTree
Type: Feature Request
4

I use the below template to render nodes (so that root nodes do not have a checkbox), but when I click checkAll button the root node(s) content are also displayed as selected

 

You should provide an event to custom handle this behavior and ignore nodes unselectable

 .Checkboxes(setting => setting
                                                .CheckChildren(true)
                                                .Template("# if (item.level() > 0) { #" +
                                                            "<input type='checkbox' #= item.checked ? 'checked' : '' #>" +
                                                            "# item.text = item.SymptomName #" +
                                                            "#}else{#" +
                                                                "# item.text = item.LocationName #" +
                                                            "#}#"
                                                )
                                )

 

Keep up the awesome work !

1 2