When backspacing input in the row filter of a navigatable Kendo UI Grid, it appears to attempt to delete a record.
Filtering is prevented and a delete confirmation dialog appears. Upon selection in the dialog, the filtering occurs.
When the content of the Kendo UI Editor contains the head, the code within it is displaying with the use of the viewHtml.
The content within the head will be displayed.
Manually remove the tags from the IFrame (Dojo).
var iframe = $('.k-iframe') // Identify the iframe by its class
var iframeContent = iframe.contents() // Access the content of the iframe
var metaElement = iframeContent.find('meta') // Traverse down the DOM tree to reach the <meta> element
metaElement.remove()// Remove all the <meta> elements
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.
The Save button becomes disabled after a validation failure and cannot be re-enabled.
The Save button should remain enabled or re-enable automatically after validation issues are resolved.
The DropDownList's Keyboard Navigation Docs specify that the arrow keys move the highlight in the dropDownList, while Enter selects the highlighted item.
However, in reality, the arrow keys already select items. Via keyboard, it is not possible to select e.g. the third item in the list without selecting the first and the second item first (by pressing the down arrow).
E.g. the docs for Angular describe a different behavior.
For example; similar to http://www.highcharts.com/stock/demo/arearange Having area 'scatter' support, such as 'scatterArea', and 'scatterAreaRange', like the existing 'scatterLine', is also desirable.
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 ]
Bug report
Spreadsheet render event does not fire since 2025.2.520
Reproduction of the problem
https://demos.telerik.com/kendo-ui/spreadsheet/events
Expected/desired behavior
Render event must fire initially.
The issue is a regression starting with 2025.2.520 version.
Environment
Kendo UI version: 2025.2.520
Browser: [all ]
When building with NPM, the glob is mismatched. This is currently related to the source code build.
Receiving the specific error message:
[!] SyntaxError: The requested module 'glob' does not provide an export named 'default'
On Safari, the Scheduler throws an error.
An error is thrown on the browser console
No errors should be thrown
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]
Currently, when items are reordered or moved from one ListBox to another, the items are present in the dataSource, but not in the position they are displayed. I know about the following solutions:
and - https://dojo.telerik.com/gDwkisQr
However, I would like to have a built-in method for retrieving the items in the order they are displayed.
When a filterable DropDownList uses a tooltip for each item, the DropDownList will close.
DropDownList Filter + Tooltip Issue | Kendo UI Dojo
Steps to reproduce are in the Dojo
The DropDownList should remain open with the tooltip.
Use a flag to handle when the DropDownList will close:
DropDownList/ToolTip - Prevent Closing | Kendo UI Dojo
When the Grid has scrollable.virtual enabled and pdfExport.allPages set to true, the loader is actually displayed, but it gets hidden immediately when the next page is loaded for exporting. This leads to the loader appearing as not visible. https://dojo.telerik.com/QlIlIbTZ
I would like the progress bar functionality to be improved and to have built-in support for displaying a progress bar in the virtual Grid when exporting all pages
Hello
Starting from version 2025.2.520:
Kendo Grid with NumericTextBox cell editor and "navigatable: true" exit edit cell state on double click/hold to select number inside editor.
Earlier versions did not have this issue.
Scenario:
Inside cell with NumericTextBox editor trying to select value without exit from edit cell state.
On click cell, that already in edit mode, switch to read mode (NumericTextBox disappears)
Desirable behavior:
Copy and paste to cell without exit and enter again in edit cell state.
Select all value without loosing editing cell state.
Dojo
For example when we type @ it should autocomplete a certain list of data in the editor
When configuring measures for the PivotDataSourceV2, the measures are not being applied.
In the dojo, with the measures configuring only the Sum, the Average is still appearing.
var pivotgrid = $("#pivotgrid").kendoPivotGridV2({
columnWidth: 120,
height: 570,
dataSource: {
data: revenue,
sort: { field: "Year", dir: "asc" },
schema: {
model: {
fields: {
Country: { type: "string" },
Revenue: { type: "number" },
Year: { type: "number" },
Sector: { type: "string" }
}
},
cube: {
dimensions: {
Country: { caption: "All Countries" },
Sector: { caption: "All Sectors" },
Year: { caption: "All Years" }
},
measures: {
"Sum": { field: "Revenue", format: "{0:c}", aggregate: "sum" },
"Average": { field: "Revenue", format: "{0:c}", aggregate: "average" }
}
}
},
columns: [{ name: "Year", expand: true }],
rows: [{ name: "Country", expand: true }],
measures: ["Sum"] // Should only show Sum, not Average
}
}).data("kendoPivotGridV2");
The Validator validates a disabled Upload
The Upload is validated although it is disabled.
Disabled elements should not be validated.
When a date is selected in the Grid and the value is cleared using the filter method, the filterMenu keeps the value of the Date fields.
The Grid is filtered and the filter is cleared correctly, but the value of the date remains in the filter menu.
When the Grid filter is cleared, the value of all inputs in the filter menu should be cleared as well.
$('.k-filter-menu-container [data-role="datepicker"]').data('kendoDatePicker').value(null)