Unplanned
Last Updated: 09 Nov 2023 12:45 by Ioannis
Created by: Ioannis
Comments: 0
Category: TreeList
Type: Feature Request
1

The aggregates field is currently available only for kendoTreeListFooterTemplate:

https://www.telerik.com/kendo-angular-ui/components/treelist/aggregates/#toc-aggregating-flat-data

But in some scenarios, the aggregates need to be displayed inside the headers as well. Please provide the aggregates field in the kendoGridCellTemplate.

So far the only approach where this can be achieved is to use manual aggregation and some custom code:

   <ng-template kendoTreeListCellTemplate let-dataItem>
                    {{dataItem.name}} - <strong> {{ data.aggregates.name.count }} employee(s)</strong>
</ng-template>

Unplanned
Last Updated: 03 Apr 2024 19:07 by Geethu
Created by: Geethu
Comments: 0
Category: TreeList
Type: Feature Request
1
Ability to modify the filter menu title with columnName placeholder in the TreeList just like the filterMenuTitle in the Grid.
Duplicated
Last Updated: 01 Dec 2022 10:21 by ADMIN
Is there some documentation or example of how to sort on a TreeList of the entire hierarchy when the hierarchy is created on demand. That is, I want the sort to order the parent node along with its children.
Declined
Last Updated: 18 Jul 2023 15:30 by ADMIN
Created by: Jose
Comments: 3
Category: TreeList
Type: Feature Request
0
Is there an example or documentation to manipulate a TreeList I want to add several rows in the TreeList and then save all the changes made in the component. Examples (AddChild and AddSibling). How could I handle that scenario where everything I do in the TreeList is stored temporarily until confirmed with a save button.
Declined
Last Updated: 12 Feb 2021 07:17 by ADMIN
Created by: Jose
Comments: 1
Category: TreeList
Type: Feature Request
0
How can I reload the treeList without expanding the children, I only want to show parents (the first level nodes)?
Unplanned
Last Updated: 19 May 2022 15:13 by ADMIN
Created by: Kendo UI
Comments: 0
Category: TreeList
Type: Feature Request
0

The drag selection is enabled immediately after dragging the cursor a little (1-2px). This causes issues when a row is expanded/collapsed first then clicking the checkbox as sometimes, the cursor is dragged in the checkbox. Then drag selection resets the previously selected rows. Here is a screencast of the issue:

https://screenrec.com/share/y6pPGWjUZH

  1. Expand a row
  2. Click and drag the cursor in the checkbox (1-2px)

https://stackblitz.com/edit/angular-qnaphv-2nszye

The drag selection should not be enabled.

The Grid has a logic for enabling the drag selection after N-pixels of dragging. Could be reused in TreeList as well.

1 2