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]

In Development
Last Updated: 20 Jul 2026 10:59 by ADMIN

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: 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.
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 ]
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

Under Review
Last Updated: 01 Jul 2026 12:03 by ADMIN
Created by: Amitesh
Comments: 1
Category: Gantt
Type: Bug Report
0

Hi there, 

I am using Kendo UI version 2026.2.520. I have a gantt chart and the view options (day, week, month etc.) disappears when I change the width of the chart. However, when I change the version to 2025.2.520, the same width shows the view types. Is there some way to solve this issue so it was working as it previously did?

 

Here is the dojo I used

https://dojo.telerik.com/KQpoYmVQ 

Completed
Last Updated: 30 Jun 2026 11:20 by ADMIN
Release 2026 Q3 (June)

Bug report

Reproduction of the problem

  1. Run this dojo - https://runner.telerik.io/fullscreen/aKRBlRDR
  2. Quickly change the views in no particular order

Current behavior

Occasionally the k-focus class is not cleared from a previously selected view.

image-20260617-110555.png

Expected/desired behavior

The k-focus class should be cleared

TicketID:

1715639

Environment

  • Kendo/Telerik version: 2026.2.520
Under Review
Last Updated: 30 Jun 2026 08:31 by ADMIN

This problem can be easily demonstrated by looking at the page on the demonstration page, and then copying and pasting the same code into the kendo dojo.

The official demonstration page displays the buttons like so:

But the same code on the dojo displays the buttons like so:


As you can see, the demonstration page has a consistent style for all of the buttons, while the dojo page does not.

Both pages have the same classes on the icons:

  • k-svg-i-caret-alt-to-left
  • k-svg-i-chevron-left
  • k-svg-i-chevron-right
  • k-svg-i-caret-alt-to-right

The mixture of styles gives an unprofessional impression to the customer, and is preventing me from upgrading my codebase from version 2025.4.1321

For the simplest possible example, see this dojo snippet: https://dojo.telerik.com/aroNDBBv

Planned
Last Updated: 30 Jun 2026 06:56 by ADMIN

In Kendu UI 2026 Q2 (version 520) file kendo.all.d.ts

The interface IChatOptions has a duplicate defintion for the messageTemplate

Line 3849:

messageTemplate?: MessageTemplateFunction | null;

Lines 3916/3917   

/** Template for rendering individual messages */

messageTemplate?: MessageTemplateFunction | null;


Declined
Last Updated: 29 Jun 2026 09:56 by ADMIN

The DropDownList's Keyboard Navigation Docs specify that the arrow keys move the highlight in the dropDownList, while Enter selects the highlighted item.

However, in reality, the arrow keys already select items. Via keyboard, it is not possible to select e.g. the third item in the list without selecting the first and the second item first (by pressing the down arrow).

E.g. the docs for Angular describe a different behavior.

Completed
Last Updated: 25 Jun 2026 07:58 by ADMIN

Bug report

DropDownList: dataItem(e.item) returns undefined when selecting across different groups

Regression since 2026.1.212

Reproduction of the problem

1. Open the next Dojo: https://dojo.telerik.com/aVJUwDTZ

2. Open the DropDownList.

3. Select an item from a group different from the one currently active/selected.

Observe the console for this.dataItem(e.item).

Current behavior
undefined is logged for this.dataItem(e.item)

Workaround: https://dojo.telerik.com/LUdpEmnY

Environment
Kendo UI version: 2026.1.212 or newer
Browser: all

1 2 3 4 5 6