Planned
Last Updated: 07 Aug 2025 10:05 by ADMIN
Scheduled for 2025 Q3 (Aug)

Bug report

group Grid event does not trigger when performing the grouping via the column menu.

Reproduction of the problem
Dojo example - https://dojo.telerik.com/EekHxwPJ


Environment

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

Planned
Last Updated: 28 Jul 2025 07:11 by ADMIN
Scheduled for 2025 Q3 (Aug)
Created by: John
Comments: 0
Category: Validator
Type: Bug Report
0

Bug report

The Validator validates a disabled Upload

Reproduction of the problem

  1. Open the Dojo example and click the 'Submit' button - https://dojo.telerik.com/ceKdJFuW.

Current behavior

The Upload is validated although it is disabled.

Expected/desired behavior

Disabled elements should not be validated.

The issue is a regression starting with 2025.2.520 version.

Environment

  • Kendo UI version: 2025.2.702
  • Browser: [all ]
Planned
Last Updated: 24 Jul 2025 08:09 by ADMIN
Scheduled for 2025 Q3 (Aug)

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

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]

Planned
Last Updated: 30 May 2025 14:29 by ADMIN
Scheduled for 2025 Q3 (Aug)

Bug report

In a Grid with popup editing, the Save button is clickable multiple times until the popup closes, which results in multiple Update requests

Regression introduced with 2024.2.514

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/NgQRZIyQ/4
  2. Edit a row in the Grid
  3. Click the Save button rapidly multiple times

Current behavior

The Save button is not disabled after the first click, and multiple Update requests are sent

Expected/desired behavior

The Save button should be disabled to avoid multiple Update requests

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Planned
Last Updated: 19 Dec 2024 14:10 by ADMIN
Scheduled for 2025 Q1 (Feb)

var chart = $("#chart").data("kendoChart");
var series = [];

$(theData.Serieses).each(function (index) {
	series.push({
		name: theData.Serieses[index].Name,
		field: theData.Serieses[index].Name,
		data: theData.Serieses[index].SeriesPoints,
		xField: "X",
		yField: "Y",
		color: theData.Serieses[index].Colour,
		markers: {
			type: theData.Serieses[index].Shape
		}
	});
});
chart.setOptions({ series: series, noData: series.length == 0 });
chart.redraw();
console.log(chart.options);

When updating a chart after instantiation, because noData defaults to true, the overlay is shown immediately

if you try and set noData via setOptions then redraw(), the overlay is still in place

Honestly, this should have been marked as a breaking change as every single chart has to be updated to force noData to false just to show initially

 

 

 

 

Planned
Last Updated: 19 Jul 2024 15:21 by ADMIN
Scheduled for 2024 Q3 (Aug)

Bug report

If you toggle the formatting marks in an Inline Editor, the marks are toggled for every Editor on the page. Additionally, if the content is scrollable, the marks remain stationary when you scroll through the content.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/AFiTuKif/2
  2. Open the top inline Editor
  3. Toggle the formatting marks
  4. Scroll the Top Inline Editor

Current behavior

The formatting marks are toggled for each Editor on the page, and the arrow formatting mark remains stationary if you scroll through the content.

Expected/desired behavior

The formatting marks should be toggled for the target Editor only, and the formatting mark shouldn't scroll.

Environment

  • Kendo UI version: 2024.2.519
  • Browser: [all]
Planned
Last Updated: 08 May 2024 06:54 by ADMIN
Scheduled for 2024 Q2 (May)
Created by: Martin
Comments: 1
Category: DropDownTree
Type: Feature Request
3

In cases when we have loadOnDemand set to true and we want to populate the value of the DropDownTree initially we need a way to check if this value is part of the available options. One possible solution is adding a valueMapper function similar to the one use in virtualization scenarios.

Planned
Last Updated: 03 Apr 2024 13:20 by ADMIN
Scheduled for 2024 Q2 (May)

Bug report

When the selectable option is set to "multiple cell" and the user tries to select the content of a single column, the content of the entire row is selected.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/@NeliK/AzirANuT
  2. Try to select the text in the France cell and drag down to select only the content in the ShipCountry column.

Current behavior

The content of the other columns is selected as well - https://somup.com/cZeXIvpRzk

Expected/desired behavior

The behavior is expected when the allowPaste option is enabled. However, once the allowPaste option is disabled only the content of the selected column should be selected.

Workaround

kendo.ui.Selectable.fn._allowPreventDefault = () => true;
Dojo - https://dojo.telerik.com/@NeliK/eTocoBOL

Environment

  • Kendo UI version: 2024.1.130
  • jQuery version: x.y
  • Browser: [all ]