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!
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 to be able to utilize a Kendo UI Template to modify the formatting and content of the Kendo UI Grid's content during PDF Export. This would help gain access the grid data within the template so that I can "overwrite" the exported content's display template.
For example, the grid data could be extracted within the template. In this case, the template could utilize a Bootstrap table with some CSS classes in which it could be exported as a PDF file.
This would allow me to have better control over the content size (margin, padding, etc.) since it would be a HTML template for the exported data.
Thank you!
Hi Team,
I'd like to request to include the field's column title into the column.groupHeaderTemplate.
Thank you!
Hi Team,
I would like to request the functionality to add a format configuration to the columns.filterable.multi property. This way, it will be easier to customize instead of using the ItemTemplate to recreate the whole filter.
Thank you!
I know I can do it from the dataBound event, but... that seems like a kludge compared to just re-using the existing attributes property code on other objects.
Instead of this:
dataBound: {
$(".k-grid-edit").attr("title", "View/Edit");
}
this:
command: [{ name: "edit", text: "", click: ShowDetails, attributes: {title: "View/Edit"} }], title: "", width: 40
Hi team,
To reproduce that, go to https://demos.telerik.com/kendo-ui/grid/persist-state
- first, inspect the TH element of the "Contact Name" column, no headers attribute. (screenshot 1)
- then click on "Save State" button and click on "Load State" button.
- now, inspect again the TH element and you will find the attribute "headers"="undefined", on each column actually. (screenshot 2)
Not a big deal but this makes an entry (serious) with the Axe plugin accessibility checker.
Please advise and propose a workaround if any.
Best regards,
Laurent.
Hi Team,
This may be more of a bug, but kendo grid's copySelectionToClipboard and exportSelectedToExcel doesn't work with multi column headers. Unfortunatley for us, our grid completely configured with muktiple multi-column headers. Please look into this.
Thanks,
Indu
Hi Team,
I would like to request your consideration to add support for date fields to be filtered via the Kendo UI Grid's search panel when utilizing server operations. I understand currently this is a limitation but would like this to be incorporated in future releases.
Thank you!
Hi Team,
I'd like to request the functionality to include the input value within a Kendo UI Grid's search panel within the getOptions method. This would allow for the search panel's input to be populated with the loaded state.
Thank you!
Hi Team,
I'd like to request the functionality to include event handlers and/or functions with the kendo.Stringify() method. I understand event handlers are not included in JSON.stringify, but I would like to ask for future implementation from Kendo to be able to include them.
Thank you!
Hi Team,
I would like to ask for the functionality to access the worksheet tabs to be able to format/change the contents of them. I understand the title can be set, but I would like to be able to change the background color.
Thank you!
We are using the functionality included with the grid (mvc and .net core) to save and set filters, sorts and groupbys. Where the functionality fails is if the grid or columns change in any way (including toolbars). the getoptions() and setoptions() is a snapshot in time and is not very adaptive. Our users had 1000's of saved grids and was really not allowing us to change the grid data or columns or even change the default order of the columns. What we ended up doing to allow the saved grids to work and the developers to have the freedom to change the grids was:
1. Getting the grid that is passed down to the screen and saving it for a clear functionality (and knowing what the default was supposed to be).
2. Looking at the sort, groupby and filter subcomponents of the saved grid objects by column and looking for a column match in the grid that was passed to the screen.
3. If a column in the saved grid does not exist, do not apply those filters, sorts and groupby's and alert the user
4. Only apply/change the filters, sorts and groupbys via a setOptions() on the grid that is passed down as opposed to a set of the entire object.
6. If a column is added to the grid alert the user that the column is added
7. If the grid has changed, use a getOptions() to resave the users selections with the modifications above
8. Load the data
We have javascript that does the column compare, with differences in the grid if your developers would like to see how we solved this issue.
Hi Team,
I would like to request to set the Grid's toolbar overflow to visible or a way to modify it's configuration within the API rather than it's current configuration to allow Kendo UI Menu items and other dropdown components from hiding behind the Grid body.
For now, I'm using the following:
.k-grid-toolbar {
overflow:visible;
}
Thank you!
Hi Team,
I would like to request the Kendo UI Grid to allow virtual scrolling with smaller pagesizes. I understand right now it is a limitation, but I would like to see this functionality in the future if possible.
Thank you!
Hi Team,
I would like to request the functionality to easily modify group and sub group headers with specific templates for aggregation, and have it built-in to the API. For example, the group header could contain the total within the large group, and the sub group would contain each individual section. Additionally, it would be nice to be able to reference each to better select each section.
Thank you!
When using specific themes for a scrollable Kendo UI Grid which have long titles within the column header, the sort icon are partially shown or not shown.
The sort icon is not shown upon sorting.
The sort icon should be shown as expected with every theme.
We are using kendo Datagrid where we wanted to apply pagination.
We are using pageSizes property of pageable object to set the no of items per page to render. We are also using buttonCount property to control the number of buttons.
Problem : For example I have 200 records , if I set pagesSizes=1 so technically I will have 200 paging button and if i set buttonCount to 60 than UI gets distorted. Find below is stackblitz URL where I have set pagesSizes=1 and if you set Maximum number of buttons = 70 UI will break.
URL : https://cuezkg--run.stackblitz.io/
Hello,
A couple feature requests...
Clear the built in search box value.
clearSearch - clears the search box
e.g.,
var grid = $("#grid").data("kendoGrid");
grid.clearSearch();
Customize validation text via schema model fields validation.
e.g.,
var grid = $("#grid").data("kendoGrid");
const dataSource = new (<any>self).kendo.data.DataSource({
data: models,
schema: {
model: {
id: "id",
fields: {
id: { editable: false, nullable: true },
modelName: { validation: { required: true, messages: {required: "Model name is a required field"} } },...
Hi Team,
I'd like to request the functionality to change the format of a Kendo UI Grid column without needing to call the setOptions method. This would be nice to avoid additional Read calls.
Thank you!