Pending Review
Last Updated: 30 Jul 2026 09:01 by Michael D
Created by: Michael D
Comments: 0
Category: Dialog
Type: Bug Report
0

The kendo grid's keyboard navigation does not work reliably when rendering a grid inside a dialog. I assume that this is caused by the dialog's focus trap.

To reproduce the issues, open this DOJO that just renders a grid in a dialog.

  1. open the dialog
  2. focus the "Add" button
  3. press TAB until the focus is on the first cell
  4. press ARROW DOWN (this focuses the checkbox in the cell below)
  5. press TAB

-> the close button of the dialog is focused

Also note that after reloading the DOJO and doing this for the first time, step 3 directly focuses the checkbox while in consecutive runs, the cell is focused.

Unplanned
Last Updated: 30 Jul 2026 07:42 by Michael D

I am using the Kendo-UI Grid's resizeColumn method do change column widths programmatically (e.g., to distribute column widths by our own custom rules). I have noticed that doing so sometimes leads to unexpected results as demonstrated in this DOJO:

Assume a grid with two columns: one has a fixed size of 200px and the other has no explicit width set.

In the first example, we programmatically set the first column's width to 200px (which should not change anything since the column already is 200px wide. 

grid.resizeColumn(column, 200);

This works as expected.

In the second example, we programmatically set the first column's width first to 20px and then immediately to 200px. I would expect the final outcome to be the same, since the second column should compensate.

grid.resizeColumn(column, 20);
grid.resizeColumn(column, 200);

However, the second column does not shrink and the overall grid grows larger instead. Doing this repeatedly causes the columns to grow larger and larger over time.

Of course, this is a simplified example and I do not call resizeColumn() twice right after each other.

Unplanned
Last Updated: 29 Jul 2026 12:32 by ADMIN
Scheduled for 2026 Q2

Bug report

When there is a frozen column in the TreeList, not all the columns are resized correctly on double-clicking on the resize handler.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/Aticudup
  2. Double-click between the LastName and Position columns -> the LastName column is resized based on the content.
  3. Double-click between the Position and Ext columns

Current behavior

The Position column is not resized and a scrollbar may appear depending on the width of the screen

Expected/desired behavior

The behavior when clicking on the drag handler should be the same for all the columns. In the described scenario the Posiiton column should be resized as well.

Environment

  • Kendo UI version: 2024.1.130
  • Browser: [all ]
Unplanned
Last Updated: 29 Jul 2026 12:32 by ADMIN
Scheduled for 2026 Q2

Bug report

The Editor doesn't allow multiple separators through the tools configuration.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/eSESEheW/19

Current behavior

Only the first separator is rendered.

Expected/desired behavior

All the separators should be rendered

Environment

  • Kendo UI version: 2024.1.319
  • Browser: [all]
Unplanned
Last Updated: 29 Jul 2026 12:32 by ADMIN
Scheduled for 2026 Q2

Bug report

In a Grid with locked columns, there's an invalid aria-selected attribute on tr elements in the locked columns.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/aKVfRvAN/6
  2. Select the first row
  3. Inspect the tr element under the locked column in the browser

Current behavior

The tr role='none' element has invalid aria-selected attribute

Expected/desired behavior

The element shouldn't have the aria-selected attribute.

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all]
Unplanned
Last Updated: 29 Jul 2026 12:32 by ADMIN
Scheduled for 2026 Q2
Created by: Mohd
Comments: 0
Category: Spreadsheet
Type: Bug Report
1

Bug report

NORM.S.INV, NORM.INV, and NORM.DIST are officially listed as supported formulas, but they are not functioning properly

Regression bug since 2024.4.1112

Reproduction of the problem

Open the Demos - https://demos.telerik.com/kendo-ui/spreadsheet/index

Paste: =NORM.S.INV(0.908789)

Result must be 1.3333347


Environment
Kendo UI version: 2024.4.1112
Browser: [all ]

Completed
Last Updated: 28 Jul 2026 11:52 by ADMIN
Release 2026 Q3 (July)

Bug report

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/tLeSgMPo
  2. Create a new event
  3. Drag and drop it over the existing one

Current behavior

The events overlap

image-20260717-105758.png

Expected/desired behavior

The events should be deisplayed one below each other.

The issue is a regression starting with 2023.2.606

Environment

  • Kendo/Telerik version: 2026.2.520
  • Browser: [all ]
Declined
Last Updated: 22 Jul 2026 13:07 by ADMIN

Bug report
Grid's loader gets lost in the scrollable area height is greater than the viewport height

Reproduction of the problem

Dojo: https://dojo.telerik.com/hqknEyYx/2

Run and click on Export to Excel button

Worakround: https://dojo.telerik.com/gSsYgQpZ

excelExport: function (e) {
          let gridHeight = $("#grid").height();
          if (gridHeight < 700) {
            $("div.k-loader-container-inner").addClass("smallHeight");
            
          } else {
            $("div.k-loader-container-inner").addClass("biggerHeight");
          }
        }
...
<style>
        div.loaderPosition {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }
      div.biggerHeight {
        position: absolute;
          top: 50vh;
          left: 50%;
          transform: translate(-50%, -50%);
      }
    </style>

Environment
Kendo UI version: [all[
jQuery version: 3.4.1
Browser: [all]

Declined
Last Updated: 16 Jul 2026 08:41 by ADMIN

Bug report

If the snap option is set at runtime the drag hint of the events starts having wrong height.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/ilaziJEr
  2. Try to disable and enable the Switch at the top ( you may need to disable and enable multiple times)
  3. Drag the event

Current behavior

After changing the snap option at runtime as a result the drag hint height is correct when the snap is set to false, but it has wrong height when the snap is enabled.

Expected/desired behavior

The drag hint should have the same height as the dragged event.

Workaround

move: function(e){
				
          var dragHintEl = $('.k-event-drag-hint')
          var dataUid = $('.k-event-drag-hint').attr('data-uid')
          var event = $('.k-event[data-uid="'+ dataUid +'"]:not(.k-event-drag-hint)')         
          var height = $(event).height()
          $(dragHintEl).height(height)

        },

Dojo - https://dojo.telerik.com/@NeliK/aZArEdof

Environment

  • Kendo UI version: 2024.1.130
  • Browser: [all ]
In Development
Last Updated: 15 Jul 2026 12:19 by ADMIN

Bug report

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/VGCfaixF
  2. Select the month part and start typing first letter of a February, April, June, September or November months.

Current behavior

The mentioned months not selected. However, some months such as Jan, July are selected as expected.

Expected/desired behavior

All the months should be filtered/selected when typing first letters

The issue is a regression starting with 2024.4.1112

Environment

  • Kendo/Telerik version: 2026.2.520
  • Browser: [all ]
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
Completed
Last Updated: 14 Jul 2026 10:33 by ADMIN
Created by: JEAN CHARLES
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

To reproduce :
go to official dojo https://dojo.telerik.com/PfhfyBzh

select all text (ctrl+A) (or select text with image at the same time with mouse)

Start dragging the selection

---> the error occurs (check console devTools)

Uncaught TypeError: Cannot read properties of undefined (reading '_destroyResizeHandles')

The error occurs here :

let fe = u.extend({
            create: function(e) {
                let t = this;
                a(e.body).on(`dragstart` + S, function() {
                    var t = x.nodes(e.getRange())
                      , n = !1;
                    t.forEach(function(e) {
                        e.nodeName === `IMG` && (n = !0)
                    }),
                    n && t.length > 1 && e.elementResizing._destroyResizeHandles()

your algorithm find one image in the selection and assume we are resizing and try to call "_destroyResizeHandles"

I think you should test before calling this method so it should be :

n && t.length > 1 && e.elementResizing && e.elementResizing._destroyResizeHandles()

 

 

 

 

Completed
Last Updated: 13 Jul 2026 06:39 by ADMIN
Release 2026 Q3 (July)
So the Selectable's multiple flag is baked in at construction from options.selectable, and _selectable() is only ever called at init — never by setOptions. That's the root cause: on Kendo 2026, setOptions({selectable:"multiple"}) updates the option but the Selectable object keeps its original multiple:false, and the legacy selectable.options.multiple = true poke is no longer honored.
Planned
Last Updated: 09 Jul 2026 07:39 by ADMIN
Created by: Support
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

Current behavior

Errors during build process:

(replace-metadata plugin) [SOURCEMAP_BROKEN] Sourcemap is likely to be incorrect: a plugin (replace-metadata) was used to transform files, but didn't generate a sourcemap for the transformation. Consult the plugin documentation for help: https://rolldown.rs/guide/troubleshooting#warning-sourcemap-is-likely-to-be-incorrect

Expected/desired behavior

There should be no errors

TicketID:

1716119

Declined
Last Updated: 08 Jul 2026 14:55 by ADMIN

Bug report

Change fired twice when triggered manually on input change and selecting value from popup list

Reproduction of the problem
Run the Dojo sample: https://dojo.telerik.com/aFOJhVWj


Environment
**Kendo UI version: 2025.1.227
**jQuery version: 3.7.1
**Browser: [all]

Completed
Last Updated: 06 Jul 2026 15:10 by ADMIN
Release 2026 Q3 (July)

Bug report

Reproduction of the problem

  1. Open the link in Firefox - https://demos.telerik.com/kendo-ui/editor/inline-editing .
  2. Select and delete all the text in one of the inline editors.
  3. Type any two (or more) characters to reproduce the issue.

Current behavior

If the user begins typing a word into the editor, the first character is automatically wrapped in a <p> tag.

Expected/desired behavior

The behavior between the browsers should be consistent. There should be no additional <p> tag.

Workaround: https://dojo.telerik.com/usTyJAmt/3

Environment

  • Kendo/Telerik version: 2026.2.520
  • 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: 06 Jul 2026 09:03 by ADMIN
Release 2026 Q3 (July)
Created by: Rajendrakumar
Comments: 0
Category: NumericTextBox
Type: Bug Report
0
Summary
The NumericTextBox silently rejects valid decimal values at or below 1e-7 (e.g., 0.0000007) when pasted or programmatically set. Telerik's documentation classifies this as a "JavaScriptlimitation." This report demonstrates that the numeric value is fully correct at every stage — the defect is in how the widget converts the value back to a string for its own internal validation.

Steps to Reproduce
1. Open any Kendo NumericTextBox.
2. Paste .000007 → value is accepted.
3. Clear the input and paste .0000007 → value is rejected, cleared, or displayed as NaN.

The threshold is exactly 1e-7, which is the point at which Number.prototype.toString() switches to scientific notation.
Unplanned
Last Updated: 03 Jul 2026 10:37 by ADMIN
Created by: Razvan
Comments: 3
Category: Upload
Type: Feature Request
3
Hi Team,

I understand at the moment it is not available, but I would like to see drag and drop functionality in the future for the Kendo UI Upload's Synchronous mode.  

Thank you!
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 ]
1 2 3 4 5 6