Completed
Last Updated: 20 Mar 2019 12:59 by ADMIN
Currently we use batch editing in the Grid control. The idea of batch editing is all changes are retained client side until the user presses the save button. 

When editing a cell a red dirty indicator is placed on the cell. This gives the user an indication that there are unsaved changes. however, when deleting a row, the row just goes away. There is no indication the user must still save. 

I would like to see rather than the record immediately removed a class applied to the row so we can apply some style like a strikethrough or red background color to indicate a pending delete. Also, we would be able to switch the "delete" button to an "undo" button.
Completed
Last Updated: 14 May 2021 10:53 by ADMIN
Add the ability to display the Show/Hide Column menu by right clicking the Column Header instead of going through the "Column Menu".

It would also be nice if you could access the Filter directly instead of going through the "Column Menu"

The current Column Menu unnecessarily hides functionality in a menu  that should be more easily accessible.
Completed
Last Updated: 03 Mar 2020 09:45 by ADMIN
Created by: Philip
Comments: 3
Category: Grid
Type: Feature Request
1
Hi,

We use your kendo grid and it's great. Our users use a lot of filtering, sorting, etc.. One capability which is lacking is a way to compare columns. Now you filter a column based on a value (is greater than 5). It would be great if users could enter a value or another column.  The user should be able to select that column from the list. This list should contain all column titles.

This would be a great addition.
Completed
Last Updated: 13 Mar 2020 12:05 by ADMIN
Created by: Tycho
Comments: 0
Category: Grid
Type: Feature Request
5
The loading indicator is not showing when the height property of a grid is not set.
Completed
Last Updated: 09 Mar 2022 15:17 by ADMIN
Created by: Victor
Comments: 5
Category: Grid
Type: Feature Request
49
Right now there are two options for sorting, single and multi-column. We would very much like to use the multisort version, however our users fail to understand the functionality. We suggest a new setting, "ctrl-multisort":

Single-sort when clicking and multi-sort when ctrl-clicking, similair to most desktop grid controls.
Completed
Last Updated: 13 Mar 2020 12:03 by ADMIN
Virtual scrolling does not work for big datasets in IE and Firefox. We need adaptive scrolling 
http://stackoverflow.com/questions/2402953/javascript-data-grid-for-millions-of-rows
Completed
Last Updated: 13 Mar 2020 09:51 by ADMIN
Created by: Philip
Comments: 1
Category: Grid
Type: Feature Request
3
In google datavisualization grid, one can use cell formatters to add an excel type visualization to a cell. This could be a bar left to right showing the relative size of a value to the rest of the values. This could be an arrow comparing the result to another column either hidden or visible. This could be a color showing between red and green. The color could for instance get closer to red as they get more below 0. This is an amazing feature in google and easily configurable. It would be great of your grid could do the same.
Completed
Last Updated: 15 May 2017 11:47 by ADMIN
Created by: Brian
Comments: 3
Category: Grid
Type: Feature Request
13
Right now there is a progress indicator that shows on the grid when the data is being read.  Could this indicator also be shown during save operations?  Right now when you save there is a brief delay while the save operation is taking place where to the end user it looks like nothing is happening.
Completed
Last Updated: 12 Mar 2020 15:16 by ADMIN
With a batch edit grid, it would be nice to have the ability to cancel a data operation if cells have been edited.  Currently if the user edits some cells and then does a filter or paging operation before they save their changes, there is no way to warn them and prevent the operation from taking place.  So they will lose their changes.  Ideally, I'd like to have an event that fires before the read() operation is called on the datasource which would allow the read to be cancelled.
Completed
Last Updated: 12 Mar 2020 15:04 by ADMIN
Created by: Plamen Ratchev
Comments: 2
Category: Grid
Type: Feature Request
10
Please add horizontal navigation with arrow keys when the grid area is smaller than the container window and there are scrollbars. See demo here: http://jsfiddle.net/epqR4/. The vertical navigation with arrows works fine, but horizontal does not.
Completed
Last Updated: 22 Jan 2020 07:32 by ADMIN
Created by: Imported User
Comments: 2
Category: Grid
Type: Feature Request
23
When you configure a grid date-column with a custom format, the value configured in 'format' is parsed using JSON.parse. This requires the use of double quotes for both keys and values.

var a = "{0:dd/MMMM/yyyy}";    // example from docs
JSON.parse(a);    // SyntaxError: JSON.parse: expected property name or '}'

var b = '{"0":"dd-MM-yyyy"}';
JSON.parse(b);    // jey! 

However, if you use the latter, the generated template goes fubar with the message:

"Invalid template:' ... <td>${kendo.format("{"0":"dd-MM-yyyy"\}",theDataField)}</td> ... "

This makes sense when you look at the quote mismatch..
Completed
Last Updated: 23 Jan 2020 14:48 by ADMIN
Created by: dccxz
Comments: 3
Category: Grid
Type: Feature Request
11
Grid should allow to place images in the header of each column instead of text on per column basis.
Declined
Last Updated: 05 Mar 2020 15:36 by ADMIN
Created by: Alexey
Comments: 2
Category: Grid
Type: Feature Request
14
Add the ability to select grid rows by providing data objects from a viewmodel instead of specifying html/css selectors.

For example:

var myGrid = $('#myGrid').data('kendoGrid');
myViewModel.Items.forEach(function(item) { myGrid.select(item); });
Completed
Last Updated: 06 Feb 2018 10:06 by Satish
Created by: Andrew
Comments: 12
Category: Grid
Type: Feature Request
84
I'd like to see an event for Grid contents modified (after-edit or after-add/delete, etc).  This would enable a sync with a DataSource, for instance, without further user action.  Presently, this is not easily achieved.
Completed
Last Updated: 13 Mar 2020 09:46 by ADMIN
Created by: Jeffrey
Comments: 2
Category: Grid
Type: Feature Request
6
It's a common scenario to set custom css on <td> for specific column, for example, using columns: { field: "ScoreNumber", css: "right-align", title: "Score" } to get <td class='right-align'>, then I can make every every score field text-align: right.

Maybe adjusting _tmpl: in Grid Widget as 
rowTemplate += "<td" + (column.css ? " class='" + column.css + "'" : "") + ">"; is a easy way to accomplish it.
Completed
Last Updated: 17 Jun 2024 11:34 by ADMIN
Release 2024 Q3 (Aug)
Created by: Karl
Comments: 5
Category: Grid
Type: Feature Request
35
It would be nice to have the possiblity to toggle edit mode on and off for the Grid.
Use case: Often users find things that need changing whilst browsing data. In those cases it would be nice to have a toggle button in the toolbar that enables and disables edit mode. n quiting edit mode the users
Completed
Last Updated: 22 Jun 2017 15:17 by ADMIN
Created by: Franz
Comments: 5
Category: Grid
Type: Feature Request
36
include checkbox-based selection in the grid and allow the persisting of selections in paginated grid (i.e. user selects rows on page 1, switches to page 2, returns to page 1 --> previous selection is restored)
Completed
Last Updated: 16 Sep 2021 10:44 by ADMIN
Created by: Oskar
Comments: 2
Category: Grid
Type: Feature Request
7
with grouping/sorting/fixed wrapper size + prevent default select

http://www.kendoui.com/forums/ui/grid/local-virtual-scrolling---my-changes-grouping-sorting-works.aspx

My changes: 
http://oskar.doppnet.com/kendo-grid/local.html
http://oskar.doppnet.com/kendo-grid/remote.html