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

Completed
Last Updated: 24 Jun 2026 08:52 by ADMIN
Created by: Stu
Comments: 5
Category: Kendo UI for jQuery
Type: Bug Report
0

there is no binding for noData

e.g.

        noData?: boolean | undefined;

    interface ChartOptions {
        name?: string | undefined;
        autoBind?: boolean | undefined;
        axisDefaults?: ChartAxisDefaults | undefined;
        categoryAxis?: ChartCategoryAxisItem | ChartCategoryAxisItem[] | undefined;
        chartArea?: ChartChartArea | undefined;
        dataSource?: any|any|kendo.data.DataSource | undefined;
        legend?: ChartLegend | undefined;
        panes?: ChartPane[] | undefined;
        pannable?: boolean | ChartPannable | undefined;
        pdf?: ChartPdf | undefined;
        persistSeriesVisibility?: boolean | undefined;
        plotArea?: ChartPlotArea | undefined;
        renderAs?: string | undefined;
        series?: ChartSeriesItem[] | undefined;
        seriesColors?: any;
        seriesDefaults?: ChartSeriesDefaults | undefined;
        theme?: string | undefined;
        subtitle?: string | ChartSubtitle | undefined;
        title?: string | ChartTitle | undefined;
        tooltip?: ChartTooltip | undefined;
        transitions?: boolean | undefined;
        valueAxis?: ChartValueAxisItem | ChartValueAxisItem[] | undefined;
        xAxis?: ChartXAxisItem | ChartXAxisItem[] | undefined;
        yAxis?: ChartYAxisItem | ChartYAxisItem[] | undefined;
        zoomable?: boolean | ChartZoomable | undefined;
        axisLabelClick?(e: ChartAxisLabelClickEvent): void;
        dataBound?(e: ChartDataBoundEvent): void;
        drag?(e: ChartDragEvent): void;
        dragEnd?(e: ChartDragEndEvent): void;
        dragStart?(e: ChartDragStartEvent): void;
        legendItemClick?(e: ChartLegendItemClickEvent): void;
        legendItemHover?(e: ChartLegendItemHoverEvent): void;
        legendItemLeave?(e: ChartLegendItemLeaveEvent): void;
        noteClick?(e: ChartNoteClickEvent): void;
        noteHover?(e: ChartNoteHoverEvent): void;
        noteLeave?(e: ChartNoteLeaveEvent): void;
        paneRender?(e: ChartPaneRenderEvent): void;
        plotAreaClick?(e: ChartPlotAreaClickEvent): void;
        plotAreaHover?(e: ChartPlotAreaHoverEvent): void;
        plotAreaLeave?(e: ChartPlotAreaLeaveEvent): void;
        render?(e: ChartRenderEvent): void;
        select?(e: ChartSelectEvent): void;
        selectEnd?(e: ChartSelectEndEvent): void;
        selectStart?(e: ChartSelectStartEvent): void;
        seriesClick?(e: ChartSeriesClickEvent): void;
        seriesHover?(e: ChartSeriesHoverEvent): void;
        seriesOver?(e: ChartSeriesOverEvent): void;
        seriesLeave?(e: ChartSeriesLeaveEvent): void;
        zoom?(e: ChartZoomEvent): void;
        zoomEnd?(e: ChartZoomEndEvent): void;
        zoomStart?(e: ChartZoomStartEvent): void;
    }

 

Completed
Last Updated: 08 Jun 2026 11:47 by ADMIN
Created by: FA
Comments: 1
Category: Editor
Type: Bug Report
0

Bug report

When text is hihlighet in Rwad-Only Editor and the user tries to paste a text, the highlighted text dissapears.

Reproduction of the problem

  1. Open the Dojo
  2. Copy some text
  3. Highlight part of the text in the Editor and try to paste using Ctrl + V

Current behavior

Currently, the highlighted text dissapers

Expected/desired behavior

The highlighted text should not dissapear and the content of the Editor should remain unchanged.

Workaround

kendo.ui.editor.Clipboard.fn.onpaste = function(){
        if (this.editor.body.contentEditable === "false" || this.editor.body.contentEditable === "inherit" ) {
          return;
        }
      }

Dojo

Environment

  • Kendo UI version: 2022.1.412
  • Browser: [all ]
Completed
Last Updated: 08 Jun 2026 11:46 by ADMIN
Release 2026 Q3 (June)
Created by: Sergei
Comments: 2
Category: Editor
Type: Bug Report
0

Bug report

Reproduction of the problem

  1. Open the https://dojo.telerik.com/SSFszYRK or https://dojo.telerik.com/yYFBekrt
  2. Copy some text
  3. Select part of the text in the Editor and try to paste using Ctrl + V

Current behavior

Currently, the highlighted (selected) text dissapers.

Expected/desired behavior

The selected text should not dissapear and the content of the Editor should remain unchanged.

Workaround

kendo.ui.editor.Clipboard.fn.onpaste = function(){
        if (this.editor.body.contentEditable === "false" || this.editor.body.contentEditable === "inherit" ) {
          return;
        }
      }

Environment

  • Kendo/Telerik version: 2026.2.520
  • Browser: [all ]
Completed
Last Updated: 05 Jun 2026 11:40 by ADMIN
Created by: Hemayet
Comments: 0
Category: DateInput
Type: Bug Report
0

The DatePicker widget does not focus the input element when the calendar icon is clicked. Because of that, validation errors are persisted even when the value of the input has been filled out correctly. The input needs to be manually focused and then unfocused to get rid of the validation message.

This behavior can be observed on the following demo page:

https://demos.telerik.com/kendo-ui/validator/custom-validation 

The demo should be viewed in mobile mode.

Completed
Last Updated: 04 Jun 2026 11:27 by ADMIN
Created by: Mollie
Comments: 6
Category: Editor
Type: Bug Report
2

Bug report

If the ColorPicker tools in the Editor are configured to render a gradient, you cannot type in the HEX/RGB inputs.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/AWEmUSOS/7
  2. Open one of the Color tools.
  3. Try to type in the inputs.

Current behavior

The inputs are not selectable and you cannot type in them.

Expected/desired behavior

The inputs should be selectable so that you can type in them.

Environment

  • Kendo UI version: 2023.2.829
  • Browser: [all]
Completed
Last Updated: 04 Jun 2026 07:38 by ADMIN

Bug report

Spreadsheet validation on datatype=list, values in the dropdown are parsed to numbers. Numeric strings are automatically formatted by removing the heading zero.

Reproduction of the problem

Dojo: https://dojo.telerik.com/eOOvKJxL

                  validation: {
                      dataType: "list",
                      showButton: true,
                      comparerType: "list",
                      from: "{ \"001\", \"002\", \"Baz item 3\" }",
                      allowNulls: true,
                      type: "reject"
                    } 

The bug is a regression, formatting is different with a 2017 version: https://dojo.telerik.com/sCvgBzBa/5

Environment
**Kendo UI version: 2025.1.211
**Browser: [all]

Completed
Last Updated: 03 Jun 2026 13:44 by ADMIN

Bug report

The complete event is triggered after each file upload if chunkSize is set.

Reproduction of the problem

  1. Open this Dojo example.
  2. Select at least two files to be uploaded.

Current behavior

The complete event is triggered for each file after the uploading is done.

Expected/desired behavior

The complete event should trigger only once when the upload process for all files is completed.

Workaround in this Dojo example

Environment

  • Kendo UI version: 2020.1.114
  • Browser: [all]
Completed
Last Updated: 02 Jun 2026 08:40 by ADMIN

Bug report

When a DropDownTree is placed in a Kendo Dialog, an alert about 'Blocked area-hidden...' element appears in the console once the DropDownTree is opened.

Reproduction of the problem

  1. Run the Dojo - https://dojo.telerik.com/RyeUSdVM
  2. Open the Dialog and then open the DropDownTree.
  3. Select an item in the DropDownTree.

Current behavior

A warning Blocked aria-hidden on an element because its descendant retained focus. The focus must not be hidden from assistive technology users. Avoid using aria-hidden on a focused element or its ancestor.... appear

Expected/desired behavior

There should be no warnring about hidden elements in the console.

Environment

  • **Kendo UI version:**2025.3.1002
  • Browser: [all ]
Completed
Last Updated: 28 May 2026 15:53 by ADMIN
Created by: Hanumantha
Comments: 0
Category: PivotGridV2
Type: Bug Report
0

Bug report

When the destroy() method is used for kendoPivotConfiguratorV2 and kendoPivotConfiguratorButton an error is thrown.

Reproduction of the problem

  1. Open the dojo example - https://dojo.telerik.com/pkBibvww
  2. Open the browser console and observe the result

Current behavior

An error: TypeError: Cannot read properties of null (reading 'removeData') is thrown.

Expected/desired behavior

There should be no error, and the configurator and the kendoPivotConfiguratorButton should be successfully destroyed.

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all ]
Completed
Last Updated: 28 May 2026 07:15 by ADMIN
Release 2026 Q3
Created by: Christian
Comments: 0
Category: Grid
Type: Bug Report
0

Bug report

Grid rows could not be properly selected on iPad

Reproduction of the problem

  1. Open the dojo on iPad - https://dojo.telerik.com/gWsPhtrv
  2. Try to select a row.

Current behavior

The rows could not be selected.

Expected/desired behavior

It should be possible to select a row in the Grid when it is loaded on iPad.

Used device for testing: iPad Pro iOS18.6

Environment

  • Kendo UI version: 2025.3.812
  • Browser: [all ]
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

1 2 3 4 5 6