Unplanned
Last Updated: 24 Jul 2025 06:49 by Paweł Korczak
Created by: Paweł Korczak
Comments: 0
Category: Window
Type: Feature Request
0

Currently in kendo.prompt, the user can accept or decline the entered value in the popup only by clicking on the 'OK' and ' Cancel' buttons.

I know I can workaround that behavior as demonstrated below - https://dojo.telerik.com/pRIUUdCh 

$('[role="alertdialog"]').on('keydown', function(event){
        if(event.keyCode == 13){
          $('[role="alertdialog"] .k-button:first-child').focus();
          $('[role="alertdialog"] .k-button:first-child').click();

        } else if (event.keyCode == 27){
          $('[role="alertdialog"] .k-actions .k-button').eq(1).click()
        }
      })

However, I would like to have a built-in possibility to accept and cancel through the Enter and Escape keys.

 

Unplanned
Last Updated: 23 Jul 2025 15:37 by Rick

### Bug report

The Validator shows a duplicated error message when validating a CheckBox.

### Reproduction of the problem

1) Create a standard HTML form with a checkbox, which has two inputs - a visible one with value="true" and a hidden one with value="false" (this is the generated HTML markup when using <input asp-for="@Model.IsChecked" /> or Telerik UI for ASP.NET Core CheckBox component).

2) Initialize a Kendo UI Validator on the form and create a custom rule for the checkbox editor.

3) Submit the form and review the duplicated error message in the validation summary. The Validator validates both hidden and visible inputs.

A Dojo sample for reproduction: https://dojo.telerik.com/YoLKDPZQ

### Expected/desired behavior

A single error message must be displayed when the checkbox is not checked and the form is submitted.

### Environment

* **Kendo UI version: 2025.2.702
* **jQuery version: 3.7.1
* **Browser: [all]

Unplanned
Last Updated: 22 Jul 2025 15:21 by Hanumantha
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 ]
Planned
Last Updated: 22 Jul 2025 14:22 by ADMIN
Scheduled for 2025 Q3 (Aug)
Created by: Akesh Gupta
Comments: 0
Category: Notification
Type: Bug Report
0

Bug report

When showing a notification with closeButton set to false, the closeButton is still displayed


Reproduction of the problem

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


Expected/desired behavior
The notification should default to options.button, but should use args.closeButton to decide to show the close button in the notification.

 

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

Unplanned
Last Updated: 21 Jul 2025 11:44 by Ionela

Bug report

In a Grid with filterable set to "row" and reorderable enabled, if you type something in the filter input and try selecting the text with the mouse, the column is getting dragged.

Regression introduced with 2025.2.520

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/rXwoFtKi/4
  2. Type something in the filter input, and try selecting the text using the mouse

Current behavior

The column is being dragged, preventing you from selecting the text by dragging the mouse over it

Expected/desired behavior

The column shouldn't be dragged.

Environment

  • Ticket ID: 1693167
  • Kendo UI version: 2025.2.702
  • Browser: [all]
Need More Info
Last Updated: 21 Jul 2025 09:40 by ADMIN

1. Open Timeline view in jQuery Scheduler Widget Demo | Kendo UI for jQuery (https://demos.telerik.com/kendo-ui/scheduler/timeline

2. Edit in Kendo UI Dojo

3. Edit an event using the scheduler's event editor so that it is multi day, begins a week prior and ends at the start of the second day of a week at the time of a work day (Event: 06/02/2025 8AM - 06/10/2025 8 AM) (see attached screenshot)

4. Switch to "Work hours" instead of "Full day" view

=> The event is incorrectly displayed, missing a whole day.

 

 

Completed
Last Updated: 18 Jul 2025 08:06 by ADMIN
Created by: Scott
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

The download functionality of the PDFViewer component and when downloading PDF using kendo.saveAs() method doesn't work on some iOS mobile devices.

Reproduction of the problem

  1. Open the PDFViewer demo or the PDF Export Demo
  2. Try to export the file to PDF on iOS device

Note: On some iOS devices the PDF is exported as expected, but on others, nothing happened.

Current behavior

Currently, on some iOS devices, the PDF is exported, on others, it is exported, but there is a warning "This form is not secure, are you sure you want to submit it". After approval, the file is downloaded. On some iOS devices after clicking the button to download the PDF file nothing happens.

Expected/desired behavior

It should be possible to download the PDF file on all iOS devices.

Environment

  • Kendo UI version: 2022.1.301
  • Browser: [iOS XX Safari]
Unplanned
Last Updated: 17 Jul 2025 13:50 by banulescubogdan
Created by: banulescubogdan
Comments: 0
Category: Grid
Type: Bug Report
1

Bug report

When the user enters invalid data in Grid popup edit form and presses 'Enter' the Save button becomes disabled. The button does not get enabled even after entering a valid data.

Reproduction of the problem

  1. Open the pop-up editor by clicking "Create" or "Edit" in the Grid in the Dojo linked here - https://dojo.telerik.com/QyVhowiQ.
  2. Leave a required field (like "ProductName") empty and click Save.
  3. Validation fails, as expected.
  4. Notice that the Save button becomes disabled. Enter a valid data in the field.

Current behavior

The Save button becomes disabled after a validation failure and cannot be re-enabled.

Expected/desired behavior

The Save button should remain enabled or re-enable automatically after validation issues are resolved.

The issue is a regression starting with 2025.2.702

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all ]
Unplanned
Last Updated: 16 Jul 2025 11:14 by Karl

Bug report

When all-day event is rendered on more than one day the events in Scheduler are overlapped.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/yEDWLPir
  2. Edit the 'Job Interview - Bobby Rooney` event as follows:
Image

Current behavior

The events have the wrong calculation and are overlapping.

Image

Expected/desired behavior

The event should not overlap:

Image

The issue is a reression starting with 2024.4.1112

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all ]
Completed
Last Updated: 16 Jul 2025 08:06 by ADMIN
Release 2025 Q3 (Aug)
Created by: Mohd
Comments: 0
Category: Spreadsheet
Type: Bug Report
1

Bug report

The following Toolbar localization settings are not applying for the Kendo UI Spreadsheet when it is configured with a localization/messages file and/or using JavaScript:

  • kendo.spreadsheet.messages.toolbar.formatTypes
  • kendo.spreadsheet.messages.toolbar.alignmentButtons
  • kendo.spreadsheet.messages.toolbar.freezeButtons
  • kendo.spreadsheet.messages.toolbar.mergeButtons

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo. It uses the es-ES messages file.
  2. Open the alignment buttons dialog.
  3. Open the format types dialog.
  4. Open the merge buttons dialog - not in overflow menu.
  5. Open the freeze panes buttons dialog - not in overflow menu.

Expected/desired behavior

The toolbar messages should be translated.

Environment

Unplanned
Last Updated: 16 Jul 2025 07:24 by Michael
Created by: Michael
Comments: 0
Category: Scheduler
Type: Bug Report
0

Bug report

In the Scheduler, when mobile is set to "tablet", and RTL is enabled, the event dates are shifted with one day.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/IPBwjaVc/4

Current behavior

The events are rendered on the 30 and 01 slots, instead of 29 and 30 as defined

Expected/desired behavior

Events should be rendered on the 29th and 30th slots, as configured

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all]
Unplanned
Last Updated: 16 Jul 2025 06:49 by Steven
Created by: Steven
Comments: 0
Category: Spreadsheet
Type: Bug Report
0

Bug report

If you set a data validation for a number typed cell in the Spreadsheet, the message will be improperly formatted.

Regression introduced with 2024.4.1112

Reproduction of the problem

  1. Open the Spreadsheet Overview demo - https://demos.telerik.com/kendo-ui/spreadsheet/index
  2. Select an empty cell, and click Data Tab -> Data Validation
  3. Select Number from the dropdown
  4. Enter Min value
  5. Check the Show hint box, and click apply
  6. In the cell, type a value lower than the min

Current behavior

The validation message is improperly formatted - "Please enter a valid any value greater than 10,,10,,number,reject,greaterThan."

Expected/desired behavior

Message should be "Please enter a valid any value greater than 10."

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all]
Completed
Last Updated: 15 Jul 2025 14:10 by ADMIN
Release 2025 Q3 (Aug)

Bug report

In a Grid where custom filterable ui is configured, and the filterable.extra is set to false, the data is not filtered correctly.

Regression introduced with 2025.1.211

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/ARMkquiy/12
  2. Filter the Start Period column by choosing "NO" in the dropdownlist

Current behavior

No data is shown in the Grid, as it appears that the logic for the filterable.extra is not applied

Expected/desired behavior

The data should be correctly filtered with the above configuration.

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all]
Unplanned
Last Updated: 15 Jul 2025 10:52 by Sam

Bug report

When a user clicks on a locked column header (for example for sorting), the focus unexpectedly shifts to the first unlocked column instead of remaining on the clicked header.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/bZUXgWQT.
  2. Click on the ID or Name header.

Current behavior

The visual/keyboard focus immediately moves to the first unlocked column. If the user clicks the second locked column, the focus shifts to the second unlocked column.

Expected/desired behavior

Clicking on a locked column should retain focus on that column, not move to another grid column.

Regression

The issue is a regression starting with 2022.3.913 version

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all ]
Planned
Last Updated: 15 Jul 2025 09:19 by ADMIN
Scheduled for 2025 Q3 (Aug)
Created by: Amir
Comments: 0
Category: FileManager
Type: Bug Report
0

Bug report
File manager grid\list view icons are flipped

Reproduction of the problem

https://demos.telerik.com/kendo-ui/filemanager/index

Expected/desired behavior
Icons for the different views shall be flipped


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

Completed
Last Updated: 15 Jul 2025 08:07 by ADMIN
Release 2025 Q3 (Aug)

Bug report

With a Virtual-scrolled navigatable Kendo UI Grid, if you initially scroll down a couple pages and click on a row, the selection is not correct and the position changes.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo
  2. Scroll down
  3. Select a row

Current behavior

The position shifts upon selecting a row.
The changing event is not fired when selecting a row the first time.

Expected/desired behavior

The position should not shift, and the changing event should be fired upon every selection change.

The issue is a regression starting with the 2025.2.520 version.

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all ]
Completed
Last Updated: 15 Jul 2025 08:07 by ADMIN
Release 2025 Q3 (Aug)
Created by: ecobite
Comments: 1
Category: MultiSelect
Type: Bug Report
2

Bug report

When the MultiSelect is used inside the Grid as a custom editor, the component gets closed on focus or when the user tries to select a second item.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/oCPdsViX.
  2. Click the 'Edit' button and try to select two items in the third column 'Dont work'.

Current behavior

The first item is correctly selected, however, the pop-up is closed every time the user clicks in the input, thus it is not possible to select a second item.

Expected/desired behavior

The popup should not close on focus the MultiSelect input and it should be possible to select multiple items.

The issue is a regression starting with 2025.2.520

Workaround

The MultiSelect is not closed when the downArrow is enabled (column 'Works')

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all ]
Duplicated
Last Updated: 15 Jul 2025 07:49 by ADMIN
Created by: Karl
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Views - Month - numberOfWeeks (set to 6 weeks), do not need to see previous or next month week.  Only show days of the selected month.

This is OK:

This is not, unnecessary week of Aug 03.  The extra week adds to a busy calendar clutter.

 

 

Completed
Last Updated: 14 Jul 2025 12:34 by ADMIN
Release 2025 Q3 (Aug)

Bug report

Grid in inline edit mode with reorderable.rows does not save changed data

Reproduction of the problem

1. Open the Dojo - https://dojo.telerik.com/XJabupcY

2. Hit Edit

3. Edit field

4. Click Save

Notice that the data is not updated.

Environment
Kendo UI version: 2025.1.227

Unplanned
Last Updated: 11 Jul 2025 06:25 by Hallmaster
Created by: Hallmaster
Comments: 0
Category: ColorPicker
Type: Bug Report
0

Bug report

According to the accessibility spec, when the ColorPicker's popup is open, and the focus is on the last focusable element, pressing tab should focus the first focusable element in the popup. Instead, the focus moves out of the popup, to the next focusable element on the page.

Reproduction of the problem

  1. Open the Keyboard Navigation demo - https://demos.telerik.com/kendo-ui/colorpicker/keyboard-navigation
  2. Open either of the ColorPickers
  3. Press tab until you focus the last focusable item in the popup

Current behavior

Pressing tab again moves the focus out of the popup

Expected/desired behavior

Pressing tab should preserve the focus within the ColorPicker, to the first focusable item

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all]
1 2 3 4 5 6