In Development
Last Updated: 16 Jun 2026 13:37 by ADMIN
Created by: Vitro
Comments: 0
Category: Splitter
Type: Bug Report
0

Bug report

Reproduction of the problem

Approach described in the documentation is not working as described after version 2024.4.1112

Dojo: https://dojo.telerik.com/pXPIOvsq/2 - works with version 2024.3.1015, broken in version 2024.4.1112

Current behavior

Splitter cannot be made resizable as documented.

Expected/desired behavior

It should be possible to change the resizable option for panes.

TicketID:

1713187

Environment

  • Kendo/Telerik version: 2024.4.1112
Unplanned
Last Updated: 16 Jun 2026 08:53 by Jing
Created by: Jing
Comments: 0
Category: PDFViewer
Type: Bug Report
0

In some scenarios, the PDFViewer does not show the correct end page in its toolbar.

I have a file with 73 pages; some of the pages have different sizes.

Current behavior: When I load the file in the PDFViewer and click the 'Last page' button, there is a slight moment where the correct page number is displayed (73), but after that it is changed to 71.

Expected behavior: The correct page number should be displayed when clicking the 'Last page' button.

Unplanned
Last Updated: 15 Jun 2026 09:58 by ADMIN

This is an enhancement request.

Wizard buttons can be modified via the activate event and replaced with a fully initialized Button, but it would be better to just offer more of the Button properties right on the wizard steps.buttons object properties.  For example, the icon/image properties, fillMode, size, etc.

In Development
Last Updated: 15 Jun 2026 08:49 by ADMIN

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 ]
Pending Review
Last Updated: 12 Jun 2026 23:24 by Andrew

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

In Development
Last Updated: 10 Jun 2026 13:28 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.

Unplanned
Last Updated: 10 Jun 2026 12:18 by Sean

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

In Development
Last Updated: 04 Jun 2026 12:32 by ADMIN

The dropDownList supports several keyboard shortcuts as documented in https://demos.telerik.com/kendo-ui/dropdownlist/keyboard-navigation. However, when e.g. a KeyDown event is triggered (and handled) by the widget, its propagation is not stopped. This behavior can be witnessed in this DOJO.

In our case, we e.g. use dropDownLists inside dialog windows that can be closed via ESC. When pressing ESC while a dropDownList is focused, this not only closes the dropDownList (as expected), but also closes the dialog.

The dropDownList should stop the propagation of events that it handled.

In Development
Last Updated: 04 Jun 2026 12:31 by ADMIN

Bug report

`DropDownListSelectEvent.dataItem` is undefined when using keyboard to select the optionLabel, but is defined when using the mouse

Reproduction of the problem

Steps

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

Make a selection (e.g. "Apples").
Select the optionLabel item.

Expected

The value of DropDownListSelectEvent.dataItem is the same whether the selection is made via keyboard or mouse (assumedly).
The value of DropDownListSelectEvent.dataItem is clearly specified in the API docs when selecting the optionLabel.

Actual
The value of DropDownListSelectEvent.dataItem is "Select an option…" when selecting with the mouse.
The value of DropDownListSelectEvent.dataItem is undefined when selecting with the keyboard.

Environment
Kendo UI version: 2024.1.130
Browser: [all]

In Development
Last Updated: 04 Jun 2026 12:31 by ADMIN

Bug report

The value of a disabled DropDownList is not announced in the below screen reader -> browser combinations:

NVDA with Chrome
JAWS with Chrome

The value is correctly announced by NVDA in Firefox.

After testing the scenario with the ComboBox, the value was correctly announced in all screen reader -> browser combinations.

Reproduction of the problem

  1. Open this Dojo example in Chrome with JAWS/NVDA - https://runner.telerik.io/fullscreen/ERAxiqIy/3
  2. Click the Enable checkbox
  3. Select a value from the DropDownList
  4. Click the Enable checkbox again.
  5. Focus the Checkbox and press the down arrow key.

Current behavior

The screen reader announces the disabled state of the DropDownList, but does not announce its value.

Note - the value of the regular select element below the DropDownList is announced.

Expected/desired behavior

The value of the disabled DropDownList should be announced in the above mentioned combinations.

Environment

  • Kendo UI version: 2023.1.117
  • Browser: [Chrome]
In Development
Last Updated: 04 Jun 2026 12:30 by ADMIN

Bug Report

The cascade event is triggered on initialization of the DropDownLists

Reproduction of the issue

  1. Open this Dojo - https://dojo.telerik.com/nGNFvRwt
  2. Open the browser console

Current behaviour

The cascade event is triggered on initialization

Expected behaviour

The event should be triggered when the value of the "parent" DropDownList is changed.

In Development
Last Updated: 04 Jun 2026 12:29 by ADMIN

Bug report

When navigating between inputs and after using Shift+Tab for focusing on a previous input the DropdOwnList popup does not close on pressing 'Enter' key.

Reproduction of the problem

  1. Open Dojo
  2. Focus the text input
  3. Press Tab to focus the DropDownList
  4. Press shift-tab to focus the text input
  5. Press again Tab to focus the DropDownList
  6. Press Alt+down to expand the dropdown
  7. Press the down arrow to select an option in the dropdown
  8. Press Enter key

Current behavior

The popup does not close. If we directly focus the DropDownList and follow steps 6-8 the popup will close.

Expected/desired behavior

The DropDownList should close when pressing the 'Enter' key.

Environment

  • Kendo UI version: 2022.3.1109
  • Browser: [all]
In Development
Last Updated: 04 Jun 2026 12:28 by ADMIN
Created by: Deepak Subhedar
Comments: 0
Category: DropDownList
Type: Bug Report
0

Bug report

When the DropDownList is configured with autoWidth:true, each opening of the component increases the width of the popup with 1px

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/VzPJHcmm
  2. Open the DropDownList multiple times

Current behavior

The width of the popup increases with each opening

Expected Behavior

The width should remain the same

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Declined
Last Updated: 04 Jun 2026 11:51 by ADMIN

Bug report

When the value of the widget is set in the dataBound event handler the filtering events is fired and e.filter is undefined

Reproduction of the problem

  1. Open the Dojo
  2. Open the browser console and type something in the MultiSelect to filter the data.

Current behavior

The filtering event is fired a second time and the second time the e.filter is undefined.

Expected/desired behavior

Double-checlk if the filtering event should be fired a second time.
The e.filter and e.sender.dataSource.filter().filters[0] should return the same value.

Environment

  • Kendo UI version: 2022.3.1109
  • Browser: [all ]
Declined
Last Updated: 04 Jun 2026 11:30 by ADMIN
Created by: Shaowei
Comments: 0
Category: Checkbox
Type: Bug Report
0

Bug report

When used in a regular HTML form, the CheckBox doesn't get reset by the Reset button.

Workaround: Consider using the Kendo Form instead of a regular HTML form.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/ureSOHoB/5
  2. Click the Reset button

Current behavior

The CheckBoxes don't reset when clicking the Reset button

Expected/desired behavior

The CheckBoxes should reset when clicking the Reset Button

Environment

  • Kendo UI version: 2023.2.829
  • Browser: [all]
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]
1 2 3 4 5 6