Unplanned
Last Updated: 03 Jul 2023 10:41 by Himani
Created by: Himani
Comments: 0
Category: TreeList
Type: Feature Request
1
I am using the TreeList component with hierarchical data. The CheckBoxList allows filtering only by the root items, however, I want it to be hierarchical to support filtering by child records as well. 
Unplanned
Last Updated: 03 Jul 2023 11:15 by Himani
Created by: Himani
Comments: 0
Category: TreeList
Type: Feature Request
1
I'd like to prevent the user from dropping a column at a certain position when reordering. Please expose an OnColumnReorder that I can cancel to stop the reordering operation in this case.
Unplanned
Last Updated: 18 Oct 2023 06:54 by Patrick
I would like a feature that exposes the same behavior as the CheckParents in the TreeView. 
Completed
Last Updated: 16 May 2024 20:05 by ADMIN

https://docs.telerik.com/blazor-ui/components/grid/selection/multiple#two-way-binding-of-selecteditems

Click the Preview button to load the example. Notice that the 3rd, 4th, and 5th rows are programmatically selected in the OnInitialized() method. Now, if you hold down the Shift key and click on the 6th row, instead of having the 3rd through 6th rows selected, we get the 1st through 6th row selected.

By design, the Shift + Click shortcut starts the selection from the last clicked row. If no click has taken place, the selection always starts from the first row. How to customize this?

For reference in Angular: https://www.telerik.com/kendo-angular-ui-develop/components/grid/api/SelectionDirective/

Unplanned
Last Updated: 18 Jul 2022 11:04 by ADMIN
Created by: Ted
Comments: 1
Category: TreeList
Type: Feature Request
0

Not sure if this is a bug or missing feature, but when a user is actively doing drag and drop in the TreeList, the drag and drop should cancel as soon as they press 'Esc', just like in most apps. This is pretty standard behavior. Currently, pressing 'Esc' during drag and drop does not do anything.

If this is not a bug, could you please add this as a feature request?

Declined
Last Updated: 24 Aug 2022 15:13 by ADMIN
Created by: Matt
Comments: 1
Category: TreeList
Type: Feature Request
0

From what I can see, currently the only way to set the expanded items for a TreeList is through the state.

The main problem is that the state doesn't fire the OnExpand event, meaning that if you have a server loaded tree you need to make sure to load the data before each item is expanded. It also allows for duplicates in the 'ExpandedItems' if you don't check for duplicates before adding to it.

The TreeView has an 'ExpandedItems' parameter that can be bound which is a bit nicer than using the state, but from my quick test this also doesn't fire the OnExpand event.

 

My request is for one of the following to be added:

  1. Similar to how you can set the 'HasChildrenField' or 'ItemsField' on the TreeList, allow a 'IsExpandedField' value to be bound (Should fire the OnExpand when changed if possible). This would be the simplest way allow bindable control over the expansion of items while also making it so we don't have to manage duplicates in the 'ExpandedItems' collection.
  2. Expose a method to expand/unexpand rows. This would be different to manually changing the state as it would also fire the OnExpand event for each row expanded.
  3. Similar to the TreeView, allow an 'ExpandedItems' to be bound. Preferably this would also fire the OnExpand event.
1 2