Completed
Last Updated: 27 Jan 2022 12:25 by ADMIN
The paging functionality will not change the page automatically if no  data is left on the page.

I have recently encountered this issue, and I find it very astounding that i have found a request for this from several years ago and nothing has been done on it. 

This shouldn't have to be done by end users, the goal of your functionality is to provide easier solutions to users. This should be automatic functionality of any code that creates a pager. If the fix is as simple as the replies to requests for this suggest, it should be very simple to implement this in your next build to function automatically if paging is active.

Please get this fixed. 

Thanks.
Declined
Last Updated: 05 Mar 2020 15:07 by ADMIN
Created by: Faraz
Comments: 1
Category: Grid
Type: Feature Request
14
Currently grid takes proxy url in excel option in grid. I want proxyTarget parameter in the excel options some thing like this.

excel: {

proxyURL: "/save"

proxyTarget = "_blank"

} 
So user can open exported excel in new tab inside IPAD. This option exist in kendo.saveAs() function and export to excel function also calls the saveAs function but becuase currently this parameter is not defined in excel options so proxyTarget parameter goes undefined. Adding that option in grid will let user to open exported excel in new tab for IPAD where direct download is off.
Completed
Last Updated: 26 Nov 2018 07:44 by Holger
Created by: Christoph
Comments: 4
Category: Grid
Type: Feature Request
31
I was working with Sencha ExtJS and they have to option to make components "stateful" (http://docs.sencha.com/extjs/6.2.0/classic/Ext.state.Provider.html). This will safe user modified settings in browser (defaults to cookie but you can provide your own implementation).

Example (for grid):
* we specify width=100 for first colum
* we allow users to resize columns
* If a users resizes a column the new width will be stored in state
* ... if the user later opens the page again, values from state will overwrite "defaults" from code.

If we use this for column width, visibility and order we've a perfect customizable grid view.
Unplanned
Last Updated: 27 Jan 2022 12:17 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
4
The Grid already has beforeEdit event that can be used for preventing the editing depending on custom logic. The same thing could be used for preventing add or delete based on custom logic or validation.
Completed
Last Updated: 09 May 2022 11:46 by ADMIN
Created by: Cristina
Comments: 1
Category: Grid
Type: Feature Request
4
The existing configuration(filterable.extra), can only support 1 or 2 input from the UI. It would be great if multiple filter criterion input from the grid UI will be supported in the coming releases.
Completed
Last Updated: 28 Nov 2023 14:55 by ADMIN
Created by: Satish
Comments: 3
Category: Grid
Type: Feature Request
4
Kendo grid doesn't have in-built functionality to prevent row selection based on some condition.
One way is to remove css class "k-state-selected".
But i think there should be something like "changing" event which will be called before "change" event.
In that event developer write code and can cancel "change" event.
Or 
Boolean property something like "enabled" at row level (or cell level for cell selection) .
Declined
Last Updated: 27 Jan 2022 12:09 by ADMIN
Created by: Prashant
Comments: 1
Category: Grid
Type: Feature Request
2
Drag fill multiple cells like excel. Kendo Spreadsheet control already has it. This is a crucial feature missing from versatile grid , IMO
Declined
Last Updated: 13 Apr 2022 12:01 by ADMIN
Created by: James
Comments: 1
Category: Grid
Type: Feature Request
4
At the moment, Remote Validation on the grid does not work with incell editing.

I would like to see this restriction removed.

Normal validation works with incell editing; however, the remote does not. I should not have to change the appearance and functionality of the grid from incell to to inline just because the standard validation is insufficient.

I appreciate that this is not an easy change, but hope you are able to give it some priority.
Declined
Last Updated: 30 Mar 2021 15:35 by ADMIN
Created by: Anna
Comments: 3
Category: Grid
Type: Feature Request
5
The grid "beforeEdit" event is designed, as per documentation, "for preventing the editing depending on custom logic".

However, this event provides only information about the edited row, not cell, which severely limits what that logic can do.

A related event, "edit", passes information about the container, which is a table cell in incell mode. There is no reason for "beforeEdit" not to do the same - both event are triggered merely several lines apart.
Declined
Last Updated: 27 Jan 2022 12:02 by ADMIN
Unplanned
Last Updated: 01 Oct 2021 12:25 by ADMIN
Created by: Joshua
Comments: 1
Category: Grid
Type: Feature Request
6
We have a feature where we initialize our Grids with row filters, but we don't display them right away. We show hide them with a "Show/Hide Filters" button. It would be great to save some time on initial load of the grid (our client wants the ability to display up to ~100 columns with filters, and there's a noticeable performance impact building those filter controls), and delay that time for if/when the user decides they want to actually use the filters.
Completed
Last Updated: 27 Jan 2022 11:52 by ADMIN
Created by: JB
Comments: 1
Category: Grid
Type: Feature Request
1
Quite often you would need to set custom attributes to buttons that may not have any inbuilt functionality for Kendo Grid. This option is currently not available unless we use a template and build our own buttons. It would be useful to set the attributes similar to how the class attributes are set so we won't have to build a template of our own.
Declined
Last Updated: 27 Jan 2022 11:50 by ADMIN
Created by: Christian Storb
Comments: 0
Category: Grid
Type: Feature Request
2
Add a new attribute columns.command.materialIconClass and render it e.g. as <i class="material-icons">contact_mail</i> 

Example: 

var grid = $("#grid").kendoGrid({
                        dataSource: {
                           pageSize: 20,
                           data: createRandomData(50)
                        },
                        pageable: true,
                        height: 550,
                        columns: [
                            { field: "FirstName", title: "First Name", width: "140px" },
                            { field: "LastName", title: "Last Name", width: "140px" },
                            { field: "Title" },
                            { command: { materialIconClass: "contact_mail", text: "View Details", click: showDetails }, title: " ", width: "180px" }]
                    }).data("kendoGrid");

Completed
Last Updated: 17 Jan 2020 11:54 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
1
Currently, the Kendo grid has an option to apply only one type of filtering for a specific column (be it standard filtering or multi-checkbox filtering). 

There is a custom approach which actually builds a custom check box list that is attached to the standard filter. But, there are lot of options that are missing like Select All, Search box etc.

There should be a way where user can apply different types of filter criteria on the same column.
Completed
Last Updated: 27 Jan 2022 11:50 by ADMIN
Created by: Mark
Comments: 0
Category: Grid
Type: Feature Request
2
When a user zooms OUT on a browser(like Google Chrome) to 67% or 75%, sometimes the resize handles do not work.  We added css on top to see why(made the resize handle more visible).  The handle moves to the left the more the user zooms out.  Seems to work fine up to 80% but starts to fail after that.  Thanks
Completed
Last Updated: 23 Jan 2020 12:31 by ADMIN
Release 2019.R1
Currently the new select column and the "selectable" setting of the grid are mutually exclusive.  This seems completly counter intutive.  If you you have a select column and the "selectable" mode set to "multiple", then when you drag select or ctrl click on row the checkbox to be selected.  Right now it's not.  
Completed
Last Updated: 01 Oct 2021 12:06 by ADMIN
Created by: Connor
Comments: 0
Category: Grid
Type: Feature Request
6
Currently, pressing the arrow keys will scroll up and down the grid. It would be good if we could also use the arrow keys to change the selected row
Unplanned
Last Updated: 17 Mar 2022 15:51 by ADMIN
It would be nice to have the option to configure different column titles for the column menu. For example, when there is a multi-header Grid, you could use this functionality to add the header title to the column title.

https://www.screencast.com/t/qgeK9fFMPP
https://www.screencast.com/t/NRl61JFzFH
Declined
Last Updated: 22 Jul 2021 14:10 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
2
I know there was a request was declined, but DOM double click can't pass data row,  it is a common feature to have.
Declined
Last Updated: 20 Jan 2022 12:16 by ADMIN
With out using the group column header(columns.columns). it is better to enable one option to keep some of the columns locking together in the grid. If you reorder one column other columns should move with it like that. When we use the columns.columns option we can't find the columns under that header using the column Index (column[index]) option.