Unplanned
Last Updated: 27 May 2025 16:28 by Allan
Created by: Allan
Comments: 0
Category: TreeList
Type: Feature Request
0

Can you implement the global columns menu that is available in the Grid?

For example:

$("#treeList").kendoTreeList({
    toolbar: [
      "columns" // default built-in button to open the global columns menu
    ]
   ...
});

Unplanned
Last Updated: 27 Nov 2025 09:09 by Łukasz

Bug report

When the sortable option is disabled, the title in the header is not wrapped in span element with 'k-column-title' class.

Reproduction of the problem

  1. Open the Dojo and inspect the titles - https://dojo.telerik.com/hKCCsAOU

Current behavior

Rendering with sortable enabled:

Image

The filtering icon and title have enough space:

Image

Rendering with sortable disabled:

Image

filtering icon overlaps the title in case of long text:

Image

Expected/desired behavior

The rendering should be identical. The header title should be wrapped in a span element with 'k-column-title' class

Workaround for fixing the overlapping issue:

<style>
    .k-grid-header .k-filterable{
      padding-right: calc(1.42857143em + 14px);
    }
  </style>

Environment

  • Kendo UI version: 2025.4.1111
  • Browser: [all ]
1 2 3 4 5 6