Completed
Last Updated: 01 Jul 2025 05:59 by ADMIN
Release 2025 Q3 (Aug)

Bug report

In a ContextMenu with three levels of items, if you click on a third level item, the popup remains visible.

Small video showing the issue: https://somup.com/cT10iOLyCT

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/wVarfqux
  2. Open the ContextMenu, and open a third level of items
  3. Click on an item

Current behavior

The target item's popup remains visible, while the parent popups close

Expected/desired behavior

All popups should close when an item is clicked.

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all]
Completed
Last Updated: 30 Jun 2025 10:52 by ADMIN
Release 2025 Q3 (Aug)

Bug report

In the Grid, when a new row is added, resized, and then the cancel changes button is clicked, an error is thrown.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/SnPOwoBq/3
  2. Add a new row
  3. Resize the newly added row
  4. Click the cancel changes button

Current behavior

An error is thrown

Expected/desired behavior

No errors should be thrown

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all]
Completed
Last Updated: 30 Jun 2025 10:49 by ADMIN
Release 2025 Q3 (Aug)

Bug report

The enable options does not take effect

Reproduction of the problem

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

Current behavior

Both buttons appear enabled, although the first one has enable: false set.

Expected/desired behavior

The buttons in the Grid toolbar should appear disabled when the enable is set to false,

The issue is a regression starting with 2025.2.520

Dojo with the previous version - https://dojo.telerik.com/DWbDiIJr

Workaround:

Add the 'k-disabled' class programmatically:

$('.k-grid-toolbar .k-button:eq(0)').addClass('k-disabled')

Dojo - https://dojo.telerik.com/yztUtuvn

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all ]
Completed
Last Updated: 30 Jun 2025 09:37 by ADMIN
Release 2025 Q3 (Aug)

Bug report

When a user edits a cell/row and presses enter, the cell is marked as dirty. However, the Save and Cancel buttons remain disabled, thus the user should focus on a different cell before being able to save changes.

Reproduction of the problem

  1. Dojo - https://dojo.telerik.com/JuMumnqH
  2. Edit a cell and press 'Enter'

Current behavior

The cell is closed and marked as dirty, the 'Save changes and 'Cancel changes' buttons remain disabled.

Expected/desired behavior

The buttons should be enabled once the cell is marked as dirty.

Workaround

cellClose: function(e){
                e.sender._toggleToolbarEditingItemsVisibility()
},

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all ]
Completed
Last Updated: 27 Jun 2025 13:02 by ADMIN
Release 2025 Q3 (Aug)

Bug report
Custom ContextMenu tool in Editor does not trigger close in built-in ColorPicker tools (probably others as well) after 2025.1.211

Reproduction of the problem
1. Open the Dojo - https://dojo.telerik.com/vkqfrNLN

2. Click on Background color ColorPicker

3. Click on custom ContextMenu

Both popups overlap

Expected/desired behavior

Wokraround

Manually close popups of pickers

// Get the editor instance
          var editor = $("#editor").data("kendoEditor");

          // Close other dropdowns when clicking your custom tool
          $("#" + controlID).on("click", function () {
            var foreColor = editor.toolbar.element.find("input[data-command='foreColor']").data("kendoColorPicker");
            var backColor = editor.toolbar.element.find("input[data-command='backColor']").data("kendoColorPicker");

            foreColor.close();
            backColor.close();
          });

Environment
Kendo UI version: 2025.1.211 or newer
Browser: [all]

Completed
Last Updated: 26 Jun 2025 07:19 by ADMIN
Release 2025 Q3 (Aug)

Bug report

When there is iconClass option set in the Grid toolbar an extra span with 'k-sprite' class is rendered. If icon: 'none' is added to the items configuration, then the additional span does not appear.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/JkrjieZO
  2. Open the overflow menu and inspect the last two items

Current behavior

All items except the last one have the span as in the image below:

Image

The span leads to an extra space.

Expected/desired behavior

There should be no extra spaces when the iconClass option is used.

Wokraround

<style>
    .k-sprite{
      display: none
    }
  </style>

https://dojo.telerik.com/mLcNnDXS

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all]
Completed
Last Updated: 24 Jun 2025 11:36 by ADMIN
Release 2025 Q3 (Aug)
Created by: Support
Comments: 0
Category: Grid
Type: Bug Report
0

Bug report

Locked Rows wrong height calculation with line-height

 

  td {
      line-height: 1.1em;
  }

 

A regression introduced in version 2025.1.211.

Reproduction of the problem

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



Environment

jQuery:  3.4.1

Kendo UI version: 2025.1.211 or newer
Browser: [all ]

Completed
Last Updated: 20 Jun 2025 15:39 by ADMIN
Release 2025 Q3 (Aug)

Bug report

When navigating in the Menu popup using the keyboard, a child item is incorrectly selected and the popup is broken

Regression introduced with 2024.4.1112

Reproduction of the problem

  1. Open this Dojo - https://dojo.telerik.com/yqzLmeny
  2. Click on the Products item
  3. Navigate to storage using the keyboard
  4. Move the cursor away from Products so that the popup would close
  5. Click the right arrow key and open the Products item again

Current behavior

The Storage item is selected, and the popup is broken

Expected/desired behavior

The Storage Item shouldn't be selected, and the popup rendering should be as the initial opening

Environment

  • Kendo: 2025.1.227
  • Browser: [all]
Completed
Last Updated: 20 Jun 2025 14:42 by ADMIN
Release 2025 Q3 (Aug)

Bug report

There are duplicated inputs in the Data Configuration tab for the Pie Chart in the ChartWizard component

Reproduction of the problem

  1. Open this ChartWizard demo - https://demos.telerik.com/kendo-ui/chartwizard/index
  2. From the Chart tab, click Pie Chart -> Pie
  3. Check the Configuration inputs in the Data tab
  4. Return to the Chart tab, and click Pie several times
  5. Return to the Data tab

Current behavior

The Quantity input in the Value Axis multiplies

Expected/desired behavior

The inputs shouldn't be duplicated

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Completed
Last Updated: 20 Jun 2025 13:01 by ADMIN
Release 2025 Q3 (Aug)

Bug report

When the Inline Editor is created from a hidden element, the toolbar is broken.

Regression introduced with 20251.211

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/ZcwMyFCW
  2. Click the button to show the hidden element
  3. Press on the first textarea

Current behavior

The Editor toolbar is broken

Expected/desired behavior

The Editor toolbar should be rendered correctly

Environment

  • Kendo UI version: 2025.2.520
  • Browser: [all]
Completed
Last Updated: 20 Jun 2025 11:32 by ADMIN
Release 2025 Q3 (Aug)
Created by: omti
Comments: 0
Category: DropDownTree
Type: Bug Report
1

Bug report

DropDownTree node's subitems are not visible when expanding since 2025.1.211

Reproduction of the problem
Dojo: https://dojo.telerik.com/ovMLqOza

1. The last node is collapsed
2. Check one or two nodes under Furniture
3. Expand Decor node, you can see child node is hidden


Current behavior
Decor children not visible

Environment

jQuery: 3.4.1

Kendo UI version: 2025.1.211 or newer
Browser: [all ]

Completed
Last Updated: 19 Jun 2025 11:58 by ADMIN
Release 2025 Q3 (Aug)

Bug report

When Sortable is used to implement row reordering in Grid and the cursor is set to 'move', an error is thrown in the console when reordering.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/tLkWshEe
  2. Try to reorder a row and observe the console

Current behavior

Once the dragging starts, an error: Refused to apply inline style because it violates the following Content Security Policy directive: "style-src 'self' 'nonce-123456' https://kendo.cdn.telerik.com".... is thrown.
Note: The issue appears only with the cursor option set to 'move'.

Expected/desired behavior

There should be no error when reordering a row within the Grid.

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all ]
Completed
Last Updated: 19 Jun 2025 11:53 by ADMIN
Release 2025 Q3 (Aug)
Created by: Paul
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

I have an event template. Inside this template I am using a MultiSelect. It is defined like: <select data-down-Arrow="true"… .  The downArrow property does not work. I discovered via debugging the kendo.all.js file the problem. Fortunately this one is fixable outside that file:

Completed
Last Updated: 17 Jun 2025 10:06 by ADMIN

Currently, when you have a disabled DatePicker in MVVM scenario and the setOptions method is called, the component gets enabled.  Dojo - https://dojo.telerik.com/OBMifPCW 

The widget does not provide a configuration option that allows setting the enable state. The component can be improved by adding an enabled configuration option, and also by avoiding enabling the component after the setOptions method is used.

Completed
Last Updated: 05 Jun 2025 13:43 by ADMIN
Created by: Pratik
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

I would like to see a no-data-template be included for the Kendo UI Chart when there is no data.

Thank you!

Completed
Last Updated: 29 May 2025 11:49 by ADMIN
Release 2025 Q3 (Aug)

Bug report
Custom Validation Message for RadioGroup/CheckBoxGroup in a Form is not reflected 

Reproduction of the problem

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

Expected/desired behavior
Validation message shall be updated

Environment
Kendo UI version: [all]
jQuery version: x.y
Browser: [Firefox XX]

Completed
Last Updated: 28 May 2025 08:13 by ADMIN
Release 2025 Q3 (Aug)

Hi,

we found a hard to reproduce bug in the combobox control. It appears infrequently while typing in the combobox input, if the combobox has grouping and the fixed header enabled. It does not seem to have functional implications to the control but it produces a javascript error.

Stacktrace:


_firstVisibleItem: function () {
    for (var t = this.element[0], n = this.content[0], i = n.scrollTop, r = e(t.children[0]).height(), o = Math.floor(i / r) || 0, a = t.children[o] || t.lastChild, s = a.offsetTop < i; a; ) if (s) {
      if (a.offsetTop + r > i || !a.nextSibling) break;
      a = a.nextSibling
    } else {
      if (a.offsetTop <= i || !a.previousSibling) break;
      a = a.previousSibling
    }
    return this._view[e(a).data('offset-index')]
  }

It seems to be a timing problem where the list is already loading again while the scroll from the item selection is not finished.

Completed
Last Updated: 28 May 2025 07:48 by ADMIN
Release 2025 Q3 (Aug)

Bug report

This is a continuation of the following issue.

Probably related to:
https://source.chromium.org/chromium/chromium/src/+/62d86ddddc8fad157321e42e2acdb18b6ebba951

Reproduction of the problem

  1. Open the following Dojo in a browser running under the Chromium engine.
  2. Notice that there is a an console error which showcases sporadically, indicating the following.

Image

Current behavior

The animation container's aria-hidden attribute causes a console error in Chrome and Edge.

Expected/desired behavior

The animation container's aria-hidden attribute should not cause a console error in Chrome and Edge.

Environment

  • Kendo UI version: 2024.4.1112
  • Browser: [Chrome, Edge]
Completed
Last Updated: 19 May 2025 14:26 by ADMIN
Release 2025 Q2 (May)

Bug report

The class rendered for a custom tool in the Grid toolbar is always lower-cased, regardless how the name is configured.

Regression introduced with 2023.1.117

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/aoChdQrQ
  2. Check how the custom tools are configured - { name: customButton }
  3. Inspect the class rendered for the customButton tool

Current behavior

The rendered class is lower-cased

Expected/desired behavior

The class name should be as defined in the name field

Environment

  • Kendo UI version: 2025.1.227
  • Browser: [all]
Completed
Last Updated: 19 May 2025 13:37 by ADMIN
Release 2025 Q2 (May)

Bug report

When the Grid is configured with a ColumnMenu and the Filterable option is enabled, and there is a date column, the filter operates correctly upon initial application. However, when the filter is reopened, the second DatePicker is automatically populated with the value from the first DatePicker. The issue occurs since version 2025.1.211.

Reproduction of the problem

Open this Dojo: https://dojo.telerik.com/tcmDBDWT

Current behavior

Upon reopening the filter, the second DatePicker is automatically populated with the value from the first DatePicker.

Expected/desired behavior

Upon reopening the filter, the second DatePicker should remain blank

TicketID:

1683515

Environment

  • Browser: [all]
1 2 3 4 5 6