Unplanned
Last Updated: 16 Jul 2026 07:52 by ADMIN
Created by: Rama Mohan
Comments: 2
Category: DropDownTree
Type: Feature Request
6
Provide virtual scrolling for DropDownTree component.
Unplanned
Last Updated: 16 Jul 2026 07:44 by Rodrigo
We have a use case where we need to set a specific user-defined order or a priority for the event to be displayed as first.

For example, a way to set in the data for the event "Morning" to display first instead of "Laboratory Equipment". It cannot depend on the time range.



Thank you!
Unplanned
Last Updated: 16 Jul 2026 07:19 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Diagram
Type: Feature Request
1

Currently, the Diagram component allows setting the zoom level through the zoom property, but it does not provide a way to specify the zoom location or point. As a result, zooming always centers on the (0,0) coordinate.

Add built-in support for programmatically zooming into a specific point through the DiagramComponent API. This can be a method similar to the one available in the Kendo UI for jQuery Diagram widget:

Unplanned
Last Updated: 09 Jul 2026 04:56 by ADMIN
Created by: shoy
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
1

Signal Forms are now stable with Angular@22.

It would be nice to have an ability to use all kendo widgets with new form API.

Unplanned
Last Updated: 08 Jul 2026 07:38 by ADMIN

It would be great if you would allow loading single sheets instead of all the sheets every time. I receive data per sheet from my server.

Also the Spreadsheet fails to trigger events for:

  • row added
  • row deleted
  • column width changed
  • row height changed
  • cell style changed
  • format changed 
  • cells merged
Planned
Last Updated: 07 Jul 2026 13:06 by ADMIN
Created by: Kendo UI
Comments: 2
Category: Editor
Type: Feature Request
13

Provide a built-in option to paste Excel data inside the Editor formatted as a table (like the KendoReact Editor):

 

 

Unplanned
Last Updated: 06 Jul 2026 07:24 by ADMIN

The built-in kendoDropDownFilter directive normalizes text using String.prototype.toLowerCase() when caseSensitive: false. This is locale-insensitive and produces incorrect results for languages with non-standard case-folding rules, most notably Turkish.

The correct fix is to use String.prototype.toLocaleLowerCase(locale), which respects locale-specific case rules. The DropDownFilterSettings interface should expose a locale option for this:

filterSettings = {
  caseSensitive: false,
  operator: 'startsWith',
  locale: 'tr-TR'   // ← proposed new option
};

Affected components: kendoDropDownFilter directive (used with AutoCompleteComponent, ComboBoxComponent, MultiColumnComboBoxComponent, DropDownListComponent, MultiSelectComponent).

 

Unplanned
Last Updated: 25 Jun 2026 06:25 by ADMIN
Created by: Thomas
Comments: 1
Category: ColorPalette
Type: Feature Request
1

it seems like for defining a custom color palette it's currently not possible to use css variables. When doing something like this:

  public colorPaletteSettings: PaletteSettings = {
    palette: ['var(--my-color)', '#e2a293', '#d4735e'],    columns: 3,
    tileSize: {
      width: 60,
      height: 30
    }
  }

I get a "Cannot parse color: var(--my-color)". 
Am I missing something?

If not, is this feature planned to be implemented sometime soon?

For me, I absolutely need this feature since I want to maintain the link between colors used within the application. We have custom colors defined as css variables. I want those colors to appear inside the kendo colorpicker palette and when selecting one I want this css variable to be used, let's say as a colored line in a graph component. when later changing the value of the css variable the color within the graph should update. that's why converting my css variables into hex values does not work for me, since it's breaking the link. 

On a sidenote - is it possibel to define a custom palette preset, like the ones available: 

  public palettes: string[] = [
    "office",
    "clarity",
    "slipstream",
    "basic",
    "monochrome",
  ];



Thanks for your help.
Thomas

In Development
Last Updated: 12 Jun 2026 14:42 by ADMIN
Hi,

If we format kendo-datepicker to (MMMM/dd/yyyy) and if we enter number of month in input then it is not reflecting and shows month in input field.

As you can see in screenshot, I called (valueChange) event to see the changed value, I have enter 10 in month input field so it shows two value in console, first one is when 1 is press and second is when 0 is pressed after 1 so it gives null and in input field it shows month instead of October.

It is working if we enter first letter of month but it should work if we enter month in number.

Please fix this issue asap.

Thanks.

Unplanned
Last Updated: 12 Jun 2026 07:31 by ADMIN
Created by: Anderson
Comments: 1
Category: TreeList
Type: Feature Request
0

Hi Telerik Support Team,

I would like to request a feature enhancement for the Kendo UI for Angular TreeList component, specifically regarding the selection mechanisms.

Feature Request:

Please consider adding a (selectAllChange) event emitter to the <kendo-treelist-checkbox-column> component, similar to how selection events are handled or how other advanced components expose header checkbox interactions.

Use Case / Motivation:

Currently, when a user clicks the "Select-All" checkbox in the header, it is difficult to intercept this specific action efficiently to run custom business logic, perform secondary async operations, or manually update external states that depend strictly on the "all selected/unselected" toggle.

While we can listen to general selection changes on the TreeList, having a dedicated (selectAllChange) event that emits the current state (e.g., true, false, or even a custom event object) would provide much cleaner control over the application state, especially in complex data-binding scenarios.

Proposed Syntax:

<kendo-treelist-checkbox-column 
    [showSelectAll]="true" 
    (selectAllChange)="onSelectAllChange($event)">
</kendo-treelist-checkbox-column>

 

Unplanned
Last Updated: 10 Jun 2026 00:34 by Musashi
Created by: Nicolas
Comments: 1
Category: Editor
Type: Feature Request
5

This event would be useful to focus the editor on some specific scenarios like in the Dialog:

https://www.telerik.com/kendo-angular-ui/components/knowledge-base/focusing-editor-inside-dialog

It currently relies on a short delay, which might differ depending on the machine.

Completed
Last Updated: 29 May 2026 14:01 by Brian
Release 2026 Q2
Created by: Bill
Comments: 10
Category: Filter
Type: Feature Request
22

Ability to customize the fields control of the FilterExressions:

Unplanned
Last Updated: 25 May 2026 07:37 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
1

The multiCheckbox filter popup in the Grid sorts its distinct-value list using JavaScript's native string comparison, which orders characters by Unicode code point. This produces correct results for ASCII-only data but breaks for any locale whose alphabet includes characters outside the ASCII range (Turkish İ/Ğ/Ş/Ö/Ü/Ç, German ä/ö/ü, Czech/Polish diacritics, etc.).

The request is to sort the filter item list using locale-aware comparison (`String.prototype.localeCompare`) so that values appear in the correct alphabetical order for the active language, or provide a custom way to order the filter options.

 

Completed
Last Updated: 22 May 2026 11:27 by ADMIN

Hi,

in the ListBoxComponent, there is the concept of custom messages, by which a "noData" message can be set:

https://www.telerik.com/kendo-angular-ui/components/listbox/api/custommessagescomponent#nodatatext

A similar concept would be beneficial for the ListView (https://www.telerik.com/kendo-angular-ui/components/listview), so that we can show a message in here as well in case no data is available.

Thanks,

Felix

Completed
Last Updated: 22 May 2026 11:08 by ADMIN
Created by: Josef
Comments: 12
Category: Dialog
Type: Feature Request
8
How could I configure the dialog to NOT close after pressing the escape key
Completed
Last Updated: 22 May 2026 11:05 by ADMIN
Currently, there is no built-in property in the service to control whether the button renders. A boolean property in the DialogSettings could serve that purpose.
Unplanned
Last Updated: 14 May 2026 08:36 by ADMIN
Created by: Akshit
Comments: 0
Category: DropDownList
Type: Feature Request
1

When a DropDownList is configured with both sticky headers and grouping, the first group header is rendered twice when opening the component - once as the sticky header and once as part of the list.

Currently, there is no built-in way to suppress this duplicate. Achieving the desired appearance requires custom CSS styles, and in cases where virtual scrolling is enabled, custom DOM manipulation of internal elements is needed, which causes side effects and edge cases.

Enhancing the DropDownList with a built-in option for achieving this would allow developers to control this behavior without relying on unsupported workarounds.

Completed
Last Updated: 12 May 2026 11:21 by ADMIN
Release 2026 Q2
Created by: Alex
Comments: 4
Category: Filter
Type: Feature Request
34

Hi,

Please provide a template for the operators of the FilterExressions.

thanks

Completed
Last Updated: 07 May 2026 13:44 by ADMIN
Release 2026 Q2

Currently, the (X) close button is always shown and visible. In other words, it is not possible to configure the dialog component to NOT display this icon button. It is actually not just about the icon button, but also the ESC shortcut. It should not be possible to close the dialog when the input is set.

Feature request: Add an input `closable` for the Dialog Component ('kendo-dialog') to be able to turn off the closable behaviour. Example:

```html

  <kendo-dialog [closable]="false"></kendo-dialog>

```

The "closable" is `true` by default, ensuring that it is backwards compatible.


 

Use case: A certain dialog is presented to the user and user must NOT be able to close/ignore the dialog. The user is thus forced to resolve the instructions presented in the dialog and resolve it the intended way.

Unplanned
Last Updated: 28 Apr 2026 08:07 by ADMIN
Created by: Lorenz
Comments: 1
Category: Grid
Type: Feature Request
6
Sticky rows are a very useful feature when there is a lot of data.
However when there is a lot of data, it is also very common to use virtual scrolling because of performance concerns.
So I think this combination should be supported by the kendo grid.
1 2 3 4 5 6