Currently in a data grid with virtual scrolling there is no way to scroll to an item. You can filter to that item, but you can't see it in the context of other data. I'm pretty sure this was available in Silverlight rad grid 7-8 years ago.
If you export your grid to Excel then you may have noticed that sometimes the columns are smaller than their content. What I mean is, I have double click the coumn header in Excel to get the desired "auto-width". It would be nice to have this functionality already in Telerik. So that the column width perfectly fits its content.
We were interested in an option for aggregation rows on top of kendo grid groups. Now they are by default on the bottom of the group which some business users don't like.
Adding the same functionality as filterable.extra but in row mode. Similar to the following demo http://dojo.telerik.com/AkaYi/2.
Currently when using MVVM to instanciate a grid which contains columns with values arrays, those values arrays must be globally scoped. All other things MVVM binds to are located within the View Model. Please make it so that the kendo.bind method will allow for an MVVM grid to locate it's columns value arrays within the View Model.
In the JQuery Grid if you have the following column definition (for example): [ { "field": "Name", "title": "Name" }, { "title": "Address", "columns": [ { "field": "Street", "title": "Number & Street" }, { "field": "City", "title": "City" }, { "field": "PostCode", "title": "Post Code" } ] }, { "title": "Contact Details", "columns": [ { "field": "Email", "title": "Email Address" }, { "field": "Phone", "title": "Phone Number" } ] }, { "field": "DOB", "title": "Date of Birth" } ] When you drag the multi-column header "Address" and drop it over "Date of Birth" the header and it's child columns move as expected but the column headers in the two multi-columns get mixed up. This only seems to happen when dragging a multi-column past another multi-column in either direction.
Show the text in the filterMenu formatted as the text in the column. More info here: http://www.telerik.com/forums/filtering-html-characters
Currently, when kendo grid is initialized from an already populated html table, there is then no way to freeze columns as there is no datasource specified in kendo grid initialization.
kendo grid dynamic does not contain a definition for MinResizableWidth throwing this error on resize column ..multiple dynamic gids in my mvc view minResizableWidth float The pixel screen width below which the user will not be able to resize the column via the UI. Bug: Column Resize Handle not showing on dynamic Grid Columns The problems are the hidden columns. If you have a hidden column in the grid, you can't resize all other columns after the hidden column. That is a very nasty bug, so please Kendo-UI team make a fix for it.
It would be helpful to be able to format a grids content in a more straightforward manner out-of-the-box. For instance, if a Kendo grid was displaying a typical data matrix like https://en.wikipedia.org/wiki/Triangular_matrix, it would be useful to be able to format by the upper triangular region, lower triangular region, odd rows, even rows, etc.
KendoUI Grid persist row selection state after update a field programmatically via the set method of the dataItem.
When using a template for Grid PDF export, usage of AngularJS scope variables should be possible, e.g. to customize the title.
see https://www.telerik.com/account/support-tickets/view-ticket?threadid=1101276 for more details
When grid column is hidden template code is still being executed. For large data sets with many hidden columns this makes grid scroll slower than is necessary... { id: 'Artist', title: Columns.ARTIST, field: Columns.ARTIST, width: '100px', hidden: true, template: function (dataItem) //this gets executed even when column is hidden. { return someMethodToDetermineArtrist(dataItem); } }
This currently causes the locked columns to not line up with the rest of the grid. See http://dojo.telerik.com/eZasA/2 and http://www.telerik.com/forums/column-locking-row-heights-not-matching#KsWBJy4lGkafpkwZxUYRVw
I believe drag-drop, resize and reorder functionalities should be accessible using keyboard for people with very poor eyesight.
Add support for canvas rendering to the grid. This will improve performance of the grid considerably. Part of our testing we have concluded that the current kendo grid is not working well with a number higher than 1000 records as it will become very slow when the user is scrolling the data. In an attempt to fix this the virtual scrolling has been introduced but this breaks the grouping as the number of records displayed do not take into consideration if a group is collapsed or not. Therefore you may end up in a situation where you collapse a group with 100 rows and the grid will not display the next groups as they are not part of the current page (e.g page size 10); As an example of a canvas based grid see below: https://github.com/openfin/fin-hypergrid
The grid does not resize properly when placed in css flex containers (http://www.telerik.com/forums/how-to-use-grid-in-css-flexible-box#i5x2DlCtiEyWLXLVRg5U-g) . Would be good if it supported css flex, and the new css grid as a bonus
The Grid should be able to easly navigate from rows with the keyboard, and also select them by enter.