When using column virtualization in Kendo Grid, the save event returns an incorrect field name. After scrolling to virtualized columns, editing a cell displays the value from a different column.
An incorrect value is displayed in the cell:
The field in the save event is not correct; instead, Field48 is logged.
The correct field should be edited and returned in the save event when editing a Grid with virtual columns.
When the Kendo UI Grid is utilizing localization with group paging, the pager does not translate.
The Pager's messages are not translated.
The Grid's pager should translate like when group paging has been disabled. (Dojo)
During the Done event for the Kendo UI Wizard, the button argument returns as undefined due to the span element being targeted rather than the button.
The button argument should return the clicked button which raised the event.
When sorting is enabled for a virtualized Grid with local data, in some cases the Grid does not show correct items when sorted.
1, Open the Dojo example
2. Scroll to the bottom
3. Sort the Grid
Only the last 3 items are displayed. (screencast)
Note: The issue does not occur every time.
Enough items to fill the Grid height should be displayed. There should be no blank space without records.
the styling of links is handled inconsistently:
The issue seems to be that in the first case a span is inserted inside the a-tag, while in the second case a span is created around the a-tag and the styling for the a-tag is then used.
This can be reproduced in the All Tools demo as shown in the following video.
NOTE: if only the link is selected, or the selection starts or ends with the link, then the link color is changed. The issue is reproducible only when there is selected text before and after the link.
The color should be applied to the link text too.
When using the Grid's GetSelectedData method with a selectable column, the method throws an error.
The following error message occurs:
kendo.all.js:143633 Uncaught TypeError: Cannot read properties of undefined (reading 'selectedRanges')
Kendo UI version: 2025.3.812
Browser: [all ]
When there are multiple Property Grids on the page, all the Property Grids have the column width as configured for the first one.
The second and third PropertyGrids have the same width as the first PropertyGrid, although their configuration is different.
Each instance should have column widths based on the configuration.
When the TabStrip has an empty dataSource initially, and then a new item is added using the dataSource.add() an error appears in the console and no item is added.
An error appears in the console, and no item is added.
An item should be correctly added in the TabStrip.
Add an item in the dataSource initially and remove it when needed - Dojo - https://dojo.telerik.com/NgHHVOFy
When a Notification is rendered on the same page as popups (Window, Dialog, etc), it is displayed behind the popup.
Notification is displayed behind the popups.
The Notification should be displayed on top of the popups
$('.k-notification').parents('.k-animation-container').css('z-index', 12500)
Dojo - https://dojo.telerik.com/TnVHKzQc
In some cases, a CSP error - Applying inline style violates the following Content Security Policy directive 'style-src 'self' .... is thrown in the Editor
CSP Error is thrown - Applying inline style violates the following Content Security Policy directive 'style-src 'self'
Expected/desired behavior
There should be no errors when using the Editor tools.
When the sortable option is disabled, the title in the header is not wrapped in span element with 'k-column-title' class.
Rendering with sortable enabled:
The filtering icon and title have enough space:
Rendering with sortable disabled:
filtering icon overlaps the title in case of long text:
The rendering should be identical. The header title should be wrapped in a span element with 'k-column-title' class
Workaround for fixing the overlapping issue:
<style>
.k-grid-header .k-filterable{
padding-right: calc(1.42857143em + 14px);
}
</style>
When utilizing a scrollable, horizontal Kendo UI Menu, the height of the menu appears to stretch.
The Menu's height should not stretch upon initialization as shown in this Progress Kendo UI Dojo.
Using Edge/Chrome, upon pasting underline text in the Kendo UI Editor, the content is rendered underline, but the UI doesn't highlight the button. In turn, if the user toggles the underline style for parts of the text, it doesn't work. At this point, the button is now highlighted for the part, but switching back to no underline style doesn't have any effect regarding the rendering. Removing the style for the whole line does work as expected.
The underlined text decoration should be recognized by the UI and display.
As a comparison, here is the content after paste:
<p><span style="text-decoration-line:underline;">some text with underline</span></p><p><span style="text-decoration:underline;">some text with underline</span></p>When a CheckBox is set to enabled: false, the input is missing the k-disabled class. Thus, the checkbox does not have disabled styles applied.
The desired rendering of the component - https://github.com/telerik/kendo-themes/blob/e1dbf1a74980bd82718f40085f6a8e21922f1897/tests/checkbox/checkbox-states.html#L44
The first checkbox is enabled and the second is disabled, but they appear the same.
The input should have the k-disabled class when the checkbox is disabled
<style>
.k-checkbox:disabled{
opacity: 0.6
}
</style>
Dojo - https://dojo.telerik.com/ztwIGjBO
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
The validation message is improperly formatted - "Please enter a valid any value greater than 10,,10,,number,reject,greaterThan."
Message should be "Please enter a valid any value greater than 10."
When there is a filter applied in Excel file and the file is imported in the Spreadsheet only the first row is visible. The issue occur when the filtered column is a numeric column.
Only the filter row is visible. The filter result data rows are hidden:
All rows with filtered results should be visible. Example:
When the formula PRODUCT is used and the content of the cell based on which the formula is calculated is deleted, the result is incorrect.
The result in B1 is 1, while it should be 0
When the content of the cell used for calculation is deleted, the product formula should result to 0 (as it is in Excel).
Spreadsheet fromFile() method does not return reject promise when an error occurs while loading file. An error is thrown on the browser console instead.
The issue has been tracked to the following implementation in the source:
the 'No file to be loaded!' should be alerted;
An error will be thrown on the console
Reproducible in the demos.
=HYPERLINK("https://google.com")
The link does not work. It does if you specify a "friendly name":
=HYPERLINK("https://google.com", "google")
The link works with and without a "friendly name" specified, as in Excel.