Unplanned
Last Updated: 14 Jul 2026 11:44 by Karen

Bug report

Reproduction of the problem

  1. Open this dojo - https://dojo.telerik.com/YupCowEr
  1. Add a new item to the Grid
  1. Click 'Save Changes'
  1. Add another item to the Grid
  1. Click 'Cancel Changes'

Current behavior

The last saved item is moved to the end of the Grid

TicketID:

1716706

Environment

  • Kendo/Telerik version: 2026.2.520
Unplanned
Last Updated: 01 Jul 2026 13:23 by Jakub

Bug Report

When the Grid is exported with child columns hidden with Multi-column headers, the columns headers are not exported.

Reproducible

  1. Go to this Progress Kendo UI Dojo
  2. Export the Grid

Current Behavior

The column headers do not all export:
Image

Expected Behavior

The Grid should export all column headers like when they are not hidden - Dojo :
Image

Workaround

Explicitly set the parent column's exportable configuration to true - Dojo:

$("#grid").kendoGrid({
    columns: [
        { field: "name", title: "Name" },
        {
            title: "Address",
            exportable: true,  //set to true 
            columns: [
                { field: "street", title: "Street", hidden:true, exportable: true },
                { field: "city", title: "City", hidden:true, exportable: true }
            ]
        },
        { field: "phone", title: "Phone" }
    ]
    //....
});

Environment

Kendo UI version: 2026.2.520
jQuery version: 4.0.0
Browser: all

Completed
Last Updated: 06 Jul 2026 11:55 by ADMIN
Release 2026 Q3 (July)

Bug report

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/guOqNNgh
  2. Edit a row and save the new value

Current behavior

An error: kendo.grid.js:16278 Uncaught TypeError: Cannot read properties of undefined (reading 'field')

Expected/desired behavior

No error should be thrown. It should be possible to use detailedTemplate along with the stackedLayout

TicketID: 1715859

Environment

  • Kendo/Telerik version: 2026.2.520
  • Browser: [all ]
Completed
Last Updated: 01 Jul 2026 13:31 by ADMIN
Release 2026 Q3 (July)

Bug report

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/IbJSAmGX
  2. Try to reorder the rows and place for example row 1 below row 5

Current behavior

No row can be placed below row 5.

Expected/desired behavior

It should be possible to reorder and place a row at last possition

The issue is a regression starting with 2026.1.415

Environment

  • Kendo/Telerik version: 2026.2.520
  • Browser: [all ]
In Development
Last Updated: 09 Jun 2026 08:22 by Karen

Bug report

Reproduction of the problem

We noticed this issue on our client application. It is especially prominent on a slower network connection. We have a batch edit Grid (in cell editing). We clicked Add to create a new row, added data to it, double-clicked the Save Changes button, refreshed the page, and noticed we had 2 new entries instead of just 1 in the grid. We are currently using v2025.4.1111.

To make sure that it was not something isolated to our specific version / setup, I went to the Kendo grid demo site (https://demos.telerik.com/kendo-ui/grid/editing ) to try and reproduce. At the time of writing this ticket, the Kendo site used the latest version available, v2026.2.520.

Current behavior

The following steps reproduce the issue reliably.

  1. Open the DevTools console
  2. Click the Network tab and change the network throttle to be "Fast 4G"
  3. Click Add in the Grid
  4. Type in the cells
  5. Click Save Changes several times rapidly
  6. Observed multiple "Create" network calls in the DevTools Network tab
  7. Refresh the page to see multiple "test567" entries in the Grid

image-20260608-124602.png

TicketID: 1715189

Environment

  • Kendo/Telerik version: Latest
  • jQuery version: All
  • Browser: [all]
Unplanned
Last Updated: 12 May 2026 17:41 by Kishan
Created by: Kishan
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

Background

Kendo controls column width exclusively via <colgroup><col width="Npx"> attributes. CSS min-width on <col> is not supported by browsers (per spec). There is no minWidth property in the column configuration API. When a column has no explicit width set, it can collapse to near-zero width when the grid container is narrow - making content completely unreadable. This request excludes the columns.minResizableWidth as resizable is necessary with this configuration.

Request

We need the following to work generically across all grids without per-instance config changes:

1. Column minWidth API

columns: [
  { field: "name", title: "Name", minWidth: 150 }  // ← requested or it would be great if this min width we can apply at global level
]

Where minWidth is respected even if no width is specified, and is not overridden if an explicit width larger than minWidth is set else the global min width of 150px should be considered.

2. Grid-level minWidth config

$("#grid").kendoGrid({
  minWidth: 1000  // ← requested: grid never renders narrower than this or columnCount * default columns global width (150px) whichever is higher
});

Or ideally computed automatically as Math.max(1000, columns.length * defaultMinColWidth).

Thanks & Regards

Kishan

 

 

Unplanned
Last Updated: 18 May 2026 12:21 by ADMIN
Created by: Lee
Comments: 2
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request a way to prevent a responsive Grid from displaying an input when the screensize/container is shorter.  Perhaps, decreasing the buttonCount automatically instead of displaying the input may be a reasonable alternative.  This would be better than setting the pageable.responsive configuration to false.  

Thank you!

  
Completed
Last Updated: 27 May 2026 15:18 by ADMIN
Release 2026 Q3

Bug Report

When a navigatable Kendo UI Grid is configured with a stacked dataLayoutMode and is in an inline edit mode, using the arrow keys fails to operate as expected for the editor.

Reproducible

  1. Go to this Progress Kendo UI Dojo.
  2. Edit any line and get into text field or numeric field.
  3. Use the arrow keys to edit the component, such as up/down for numeric change or left/right to move cursor in textbox

Current Behavior

The left and right arrow keys do not appear to function. The up and down arrows move to the next rows.

Environment

Unplanned
Last Updated: 22 Apr 2026 19:25 by Sune Dyrberg
Created by: Sune Dyrberg
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

What we're looking to achieve, is that when the page/grid enters edit mode, ALL fields in the grid should immediately become editable fields. This would help prevent the user from having to click on every cell to edit first, and the user would have a direct view of all fields actually being editable, make their changes, hit the save button on the page, and save everything at once.

Currently it's difficult for the user to actually know which fields they can edit, as they have to click a cell before it becomes editable.

Thank you!

Unplanned
Last Updated: 22 Apr 2026 12:52 by ADMIN
Scheduled for 2026 Q2

Bug report

Reproduction of the problem

  1. Open the Dojo linked here - https://dojo.telerik.com/oJOxqTQk
  2. Run the page and inspect the browser console during widget initialization.

Current behavior

Initializing a hidden-by-default Kendo Grid configured with stacked layout throws a JavaScript error during initialization - Uncaught TypeError: Cannot read properties of undefined (reading 'find')

Expected/desired behavior

No errors should be thrown when initializing a hidden stacked layout Grid.

Environment

  • Kendo/Telerik version: 2025.4.1321
  • Browser: [all]
Unplanned
Last Updated: 13 Apr 2026 14:33 by ADMIN

Hello,

We would like to request this feature to expand on a Grid components Options.

Provide a built-in way for end-users to redefine or rename a Grid column's title directly through the user interface. Currently, if a user wants to change a column header from "Title1" to "Title2”, developers must write significant custom jQuery to modify the DOM or update the column via set options.

This is a functional request from our users, that we would like to provide for them.

Thanks,
John

Unplanned
Last Updated: 06 Apr 2026 19:47 by Rohit
Created by: Rohit
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to ask for a built-in Kendo UI implementation to import Excel files into the Kendo UI Grid.  

Thank you!

Unplanned
Last Updated: 03 Mar 2026 08:34 by ADMIN

In the OData v4 transport, batch submit treats a top-level HTTP 200 response as success, even when one or more operations fail. This is due to how the changesets function.

The parseBatchResponse  function, which is called by the success callback belonging to the submit function of your OData v4 transport, as well as further processing in the same success callback. No attempt is made at handling anything other than responses having status codes [200... 299].


Please enhance batch handling so inner change set failures trigger explicit client error handling.

Unplanned
Last Updated: 12 Jan 2026 07:04 by changcheng

Bug report

When sorting is enabled for a virtualized Grid, in some cases, after scrolling to the bottom, the Grid does not show enough items to fill the tnire table.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/XZAkgwxd
  2. Scroll to the bottom and sort the table, for example, by ID

Current behavior

The Grid shows only the last page of items, while there are enough items to fill up the entire table

Image

Expected/desired behavior

Enough items to fill the Grid height should be displayed. There should be no blank space without records.

Environment

  • Kendo UI version: 2025.4.1111
  • Browser: [all]
Completed
Last Updated: 09 Dec 2025 09:00 by ADMIN
Release 2026 Q1 (Feb)
Created by: Tomas
Comments: 0
Category: Grid
Type: Bug Report
1

Bug report

When the Kendo UI Grid is utilizing localization with group paging, the pager does not translate.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo.

Current behavior

The Pager's messages are not translated.

Expected/desired behavior

The Grid's pager should translate like when group paging has been disabled. (Dojo)

The issue is a regression starting with 2025.4.1111 version.

Environment

  • Kendo UI version: 2025.4.1111
  • Browser: [all ]
Completed
Last Updated: 09 Dec 2025 11:05 by ADMIN
Release 2026 Q1 (Feb)

Bug report

When using column virtualization in Kendo Grid, the save event returns an incorrect field name. After scrolling to virtualized columns, editing a cell displays the value from a different column.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/ulIlbauD
  2. Scroll and edit one of the columns, for example, edit a cell in column 'Field50'.
  3. Edit the value and click outside the cell to save

Current behavior

An incorrect value is displayed in the cell:

Image

The field in the save event is not correct; instead, Field48 is logged.

Expected/desired behavior

The correct field should be edited and returned in the save event when editing a Grid with virtual columns.

Environment

  • Kendo UI version: 2025.4.1111
  • Browser: [all ]
Unplanned
Last Updated: 12 Nov 2025 19:48 by Vijay
Created by: Vijay
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request a way to hide all columns with the columnMenu instead of requiring one to remain. 

Thank you!

Completed
Last Updated: 23 Oct 2025 11:33 by ADMIN
Release 2025 Q4 (Nov)

Bug report

When a draggable column is added in the Grid with incell editing and the user tries to add a new row, the first editable cell is the second cell on the row, but not the first one. After saving, the new value is saved in the first cell.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/qeSqICRA
  2. Click on the 'Add' button in the toolbar to add a new row.
  3. Add a value and save

Current behavior

Currently, on step two, the editable cell is the UnitPrice

Image

After entering a value, it is saved for the ProductName column

Expected/desired behavior

When adding a new row, the initial editable cell should be the first cell in the row (after the draggable). The new value should be saved for the same column.

The issue is a regression starting with 2025.3.812

Environment

  • Kendo UI version: 2025.3.1002
  • Browser: [all]
Unplanned
Last Updated: 03 Oct 2025 07:10 by Bengt
Created by: Bengt
Comments: 0
Category: Grid
Type: Bug Report
1

Bug report

When the Grid has no data, a horizontal scrollbar appears.

Reproduction of the problem

Run the Dojo - https://dojo.telerik.com/cwVUBcpz

Current behavior

There is a redundant scrollbar.
When there is a record in the same Grid, the scrollbar does not appear.

Expected/desired behavior

There should be no scrollbar when the columns have no width set and the Grid has no data.

Workaround

<style>
    .k-grid-content-expander{
      width: 98% !important
    }
  </style>

Dojo - https://dojo.telerik.com/AFvkthmc

Environment

  • Kendo UI version: 2025.3.825
  • Browser: [all ]
Unplanned
Last Updated: 01 Oct 2025 15:53 by Mikkel
Created by: Mikkel
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request implementing the feature to allow persistent multiple row selection with virtual scrolling.  I understand at the moment it is not recommended, but I would like to see this implemented in the future. 

Thanks!

1 2 3 4 5 6