Hi Team,
I would like to request the Kendo UI Grid's column.headerTemplate to contain args associated with the specific column for easier access to the column properties.
Thank you!
Hi Team,
I would like to request the functionality to group data in a Kendo UI Grid but show only distinct records based on certain fields.
Thank you!
Currently, when a foreignKey column is configured in a Grid and the value is null, the valuePrimitive option of the DropDownList should be set. However, in order to set the valuePrimitive for foreignKey column configuring a custom editor is needed as described in the link here. I would like to have the possibility to set the valuePrimitive option as part of the column configurations, without adding a custom editor. For example:
columns: [Currently it is only possible to include some custom header/footer data in an exported Excel worksheet. which is either at the beginning or the end of the rows.
It would be nice to have a feature to set the Excel-Header/Footers from Kendo UI while creating the export file. This Excel headers/footers are only visible when the Excel-Sheet gets printed e.g. you can include Report-Name, creation date or page x of y information.
Have a look at the Header/Footer feature in Excel: Headers and footers in a worksheet - Excel (microsoft.com)
The details for this can be found in ticket #1519224
Given some XML that has child nodes and attributes, I'm binding to a grid with no problem. The child grid for each row (built using detailInit) get's the data from the parent row e.data.get("BillRows")
If those rows have attributes, the '@' signs breaks the javascript for the grid. As you can see in the ticket, every attribute needs to be renamed before I can build the child grid.
Should be a way to use attributes in XML bound to a datasource/grid for all levels of grids.
Rick
Hi Team,
I would like to request the functionality to sort the MultiCheck Filter for the Kendo UI Grid. For example, maybe adding a columns.filterable.sort property.
Thank you!
Bug report
Remote data source is not correctly "in sync" when page up/page down buttons are used in Grid with Endless scrolling of remote data
Expected/desired behavior
Endless scrolling shall behave as when the mouse scrolling is used
Environment
Kendo UI version: [all]
jQuery version: [all]
Browser: [all]
Hi Team,
I would like to request the Kendo UI Grid to have a property for min-width for columns which are not resizable. This way, when the screen reduces in size, the width will remain at a min width.
Thank you!
Hi Team,
I would like to request the functionality of including a floating horizontal scrollbar. Specifically, this would be for Hierarchical Grids and Detail Grids.
Thank you!
Hi Team,
I would like to request the built-in functionality to include fixed headers for the Kendo UI Grid. Specifically, it would be great if it could be included for Hierarchical Grids and Detail Grids.
Thank you!
Hi Team,
I would like to request the functionality to allow the Kendo UI Grid to scroll up to request the next page of data. This would allow the Grid to show new items to first, and older items to be requested upon scrolling up.
Thank you!
Bug report
When the persistSelection option of the grid is disabled and several rows are selected across several pages, the selectedKeyNames() method returns all IDs instead of only the ones on the current page.
Reproduction of the problem
1. Set persistSelection to false.
2. Select several rows across several pages.
3. Call the selectedKeyNames method
4. Observe that IDs that are not on the current page are returned.
The steps can be replicated in the following live demo:
https://demos.telerik.com/kendo-ui/grid/checkbox-selection
### Environment
* **Kendo UI version:** 2021.1.224
* **jQuery version:** 1.12.4
* **Browser:** [all]
A js exception is thrown on selecting a row with the select method, when the Grid's scrollable option is disabled. The exception started appearing since R3 2020 SP1.
A js exception is thrown on calling the select method.
No exception is thrown.
When applying GroupPaging with local data using a Kendo UI Grid with AngularJS, the error message Uncaught TypeError: Cannot read property 'hasSubgroups' of undefined' appears upon expanding a parent row.
Currently, the UID for the group is not matching the group row's UID, and the error message appears.
Hi Team,
We'd like to ask for the functionality of saving asynchronously records with the Kendo UI Grid in a Batch edit mode that would be non-blocking and not interrupting. For example, a user can continue to edit without the loading symbol appearing and causing a delay in editing when the dataSource.sync() fires.
Thank you!
When a Kendo UI Grid has been initialized via a table, If the user sets the th element with data-menu="false", the menu attribute is read as a string instead of a boolean.
The data-menu configuration should be parsed to a boolean.
I just recently upgraded to the latest version of Kendo UI (2021) and noticed one of my screens broke. I'm not sure if this was something that you intended on breaking so I wanted to report it as a bug. I had a screen with a grid in which the detail contained a child grid. This particular screen doesn't have a lot of rows and the due to the usage of it the detail is extremely important and I have it set to auto expand. The auto expand still works in the respect that the rows show as expanded but every row has the same detail...which is the detail belonging to the first row. Here is a dojo showing the bug in action: https://dojo.telerik.com/@bowensby/EfUMihUp.
The main place to focus is the dataBound event on the main grid. I found a workaround using the commented out lines (the .each in jquery). The original way is cleaner but it only causes detailInit one time and therefore repeats the same detail for every row.