To reproduce the issues, open this DOJO that just renders a grid in a dialog.
-> the close button of the dialog is focused
Hi Kendo Team ,
I noticed something illogical in MajorTimeHeaderTemplate , I did console.log on date that used in template and it prints => Fri Feb 01 1980 00:00:00 GMT+0000 (UTC)
it doesnt't give the current dateTime in the MajorTimeHeader
I will include images for that
Dojo exemple => https://dojo.telerik.com/iqakAKog
Bug report
TimePicker does not preserve the new value when dateInput is enabled
Reproduction of the problem
Dojo demo: https://dojo.telerik.com/IOtuzHie
Change the value from the popup window
Expected
The value shall be preserved
Environment
Kendo UI version: 2024.4.1112
jQuery version: 3.4.1
Browser: [all]
In a scenario where a Validator is created with validateOnBlur:false, and is used to validate a NumericTextBox, if the component is focused and blurred after validation, the k-invalid class is removed.
The k-invalid class, and the styles associated with it, are removed
When the destroy() method is used for kendoPivotConfiguratorV2 and kendoPivotConfiguratorButton an error is thrown.
An error: TypeError: Cannot read properties of null (reading 'removeData') is thrown.
There should be no error, and the configurator and the kendoPivotConfiguratorButton should be successfully destroyed.
Bug report
Grid's Toolbar Columns Menu breaks after setOptions()
Reproduction of the problem
1. Go to and run this Dojo that combines the Toolbar Columns Menu demo and the Persist State demo: https://dojo.telerik.com/hVgwgCdr
2. Click "Save State" so you have some state data to restore later.
3. Click the Toolbar Columns Menu, uncheck "Contact Title", and click "Apply" to hide the column. The column gets hidden without a problem.
4. Click "Load State" to restore the previous state data. The column is displayed again and things are fine.
5. Click the Toolbar Columns Menu, uncheck "Company Name" and "Country", and click "Apply" to hide these columns.
6. Observe only one of these two columns was hidden and the Toolbar Columns Menu remains visible.
Open the Developer Tools, check the Console tab, and observe the error logged: "Uncaught TypeError: Cannot read properties of null (reading 'columns')"
It appears the columns menu's "this.owner" gets set to null at some point in the process of calling setOptions() and never gets set back to a reference of the grid.
Environment
Kendo UI version: 2025.2.702
Browser: [all ]
In the Spreadsheet, when users scroll horizontally to columns that are not initially visible, then activate Freeze Panes, the Spreadsheet scrollbar behave incorrectly
When Freeze Panes is activated after horizontal scrolling:
When there is a frozen column in the TreeList, not all the columns are resized correctly on double-clicking on the resize handler.
The Position column is not resized and a scrollbar may appear depending on the width of the screen
The behavior when clicking on the drag handler should be the same for all the columns. In the described scenario the Posiiton column should be resized as well.
The Editor doesn't allow multiple separators through the tools configuration.
Only the first separator is rendered.
All the separators should be rendered
In a Grid with locked columns, there's an invalid aria-selected attribute on tr elements in the locked columns.
The tr role='none' element has invalid aria-selected attribute
The element shouldn't have the aria-selected attribute.
Bug report
NORM.S.INV, NORM.INV, and NORM.DIST are officially listed as supported formulas, but they are not functioning properly
Regression bug since 2024.4.1112
Reproduction of the problem
Open the Demos - https://demos.telerik.com/kendo-ui/spreadsheet/index
Paste: =NORM.S.INV(0.908789)
Environment
Kendo UI version: 2024.4.1112
Browser: [all ]
The last saved item is moved to the end of the Grid
1716706
When the Grid is exported with child columns hidden with Multi-column headers, the columns headers are not exported.
The column headers do not all export:
The Grid should export all column headers like when they are not hidden - Dojo :
Explicitly set the parent column's exportable configuration to true - Dojo:
$("#grid").kendoGrid({
columns: [
{ field: "name", title: "Name" },
{
title: "Address",
exportable: true, //set to true
columns: [
{ field: "street", title: "Street", hidden:true, exportable: true },
{ field: "city", title: "City", hidden:true, exportable: true }
]
},
{ field: "phone", title: "Phone" }
]
//....
});
Kendo UI version: 2026.2.520
jQuery version: 4.0.0
Browser: all
When the diagram is zoomed the click event is not fired when clicking on shapes.
Click event is not fired.
Click event should be fired when clicking on a shape in zoomed out diagram
1715835
Run this dojo - https://dojo.telerik.com/MkKhDjxX
The results are different when using the same values in Excel.
Result comparison for cells with numeric values
| COUNTIF(B5:B9,”<> “) | COUNTIF(B5:B9,”<>11”) | COUNTIF(B5:B9,”*” | COUNTIF(B5:B9,”?3”) | |
| Kendo | 4 | 3 | 4 | 1 |
| Excel | 5 | 4 | 0 | 0 |
Result comparison for cells with text values
| COUNTIF(B12:B16,”<>11”) | COUNTIF(B12:B16,”<>???00”) | |
| Kendo | 3 | 4 |
| Excel | 5 | 1 |
1715542
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.
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.
The timezone should be adjustable [e.g. like in Moment Timezone date.tz('Asia/Tokyo')] or today should be accessible/configurable from outside the widget. Currently getToday() always returns the local time. Suggestion: Add the attribute today to the options and change the initialization of var today = new DATE() in getToday() to var today = new DATE(options.today) ...
Hi!
I have noticed the following behavior of the Kendo-UI MultiSelect widget (reproducible in this DOJO):
-> the button is still focused
The user has interacted with the MultiSelect, so it should grab the focus. Since the tag is removed, I would have expected the whole widget to be focused instead. At least this is what happens when clicking the "clear" button.