Declined
Last Updated: 02 Dec 2021 12:33 by ADMIN
Created by: Doug
Comments: 0
Category: Grid
Type: Feature Request
1
The Grid does not currently support MVVM bindings for events deeper than one level of nesting.  Please fix this.
Completed
Last Updated: 01 Sep 2022 10:16 by ADMIN
Release 2022.R3
I want to disable/hide the columnMenu the same way like disabling sorting or filtering...
it is not supported the same way as disabling sorting or filtering but only with some Javascript which is not a good solution and not consistent
Completed
Last Updated: 24 Aug 2021 05:49 by ADMIN
Created by: Mahmud Cahid
Comments: 2
Category: Grid
Type: Feature Request
2
optional clearFilters button to grids toolbar
Declined
Last Updated: 10 Jan 2022 15:04 by ADMIN
Created by: Mahmud Cahid
Comments: 0
Category: Grid
Type: Feature Request
1
global option for grid colums that sets the decimal scale of number editor ui
Declined
Last Updated: 03 Feb 2022 07:20 by ADMIN
Created by: Mahmud Cahid
Comments: 2
Category: Grid
Type: Feature Request
1
global option for grid colums that sets the format of number editor ui
Unplanned
Last Updated: 23 Jan 2020 13:04 by ADMIN
Created by: Dan
Comments: 1
Category: Grid
Type: Feature Request
2
When navigating grid in Batch Edit mode using the keyboard, the delete button in the command column is triggered by pressing Enter twice. Once to toggle the cell editable and again to fire the button event. This behavior can be observed in the batch edit demo. It would be preferable to automatically toggle the button active upon entering the cell so the user only needs to click Enter once. This could either be new default behavior or an optional event 
Unplanned
Last Updated: 21 Jan 2020 15:41 by ADMIN
Created by: Pablo
Comments: 0
Category: Grid
Type: Feature Request
9
In you web site we used the Html.Kendo().Grid Helper to build our code for the grid.
When a user refresh the page we want to keep the context of the grid, meaning the same page size the same sort and the same page number.

When we build the grind using Html.Kendo().Grid Helper the only option that we can not set is the Page number (the page that is being display).

I see that using the javascript we can set the page

<script>
var dataSource = new kendo.data.DataSource({
  data: [
    { name: "Tea", category: "Beverages" },
    { name: "Coffee", category: "Beverages" },
    { name: "Ham", category: "Food" }
  ],
  // set the second page as the current page
  page: 2,
  pageSize: 2
});
dataSource.fetch(function(){
  var view = dataSource.view();
  console.log(view.length); // displays "1"
  console.log(view[0].name); // displays "Ham"
});
</script>

But why this option is not available using the MVC Helper

.DataSource(dataSource => dataSource 
.Ajax().PageSize(24) 
.ServerOperation(true) // Paging, sorting, filtering and grouping will be done client-side 
.Read(read => read.Url("/results/gethomes")) 

This will be a nice feature to have.
Thanks
Declined
Last Updated: 05 Mar 2020 14:19 by ADMIN
Created by: Juan Gustavo
Comments: 1
Category: Grid
Type: Feature Request
15
Is the same feature that the Grid on desktop have 
Is just to keept a row at the top of the grid 
Unplanned
Last Updated: 15 Jul 2021 09:42 by ADMIN
Created by: Ralf
Comments: 0
Category: Grid
Type: Feature Request
3
Autofitting grid's columns according to its contents might be a pretty expensive operation, especially if there is are many rows. 

How about extending the 'autoFitColumn' function by a parameter which specifies how many rows should be taken into account when determining column's width. That would speedup autofit operations while maintaining a pretty good (good enough) estimation on column's width.
Completed
Last Updated: 23 Dec 2021 09:48 by ADMIN
Right now columnMenu is available in each column, along with that, it would be better if there is a centralised option where user can configure the columns.
Declined
Last Updated: 02 Dec 2021 12:12 by ADMIN
Created by: Andrew
Comments: 0
Category: Grid
Type: Feature Request
2
We have a scenario where we have a grid that can contain many types of data in a single column.  This includes numeric values and string values which could be valid hyperlinks.  Our request is for automatic detection when a string matches a hyperlink syntax to automatically create it as a link in the Grid data cell itself rather than simply appearing as a string value.  Thus the user would be able to just click on the hyperlink rather than copying and pasting the contents of the cell into their browser search bar.

Declined
Last Updated: 10 Jan 2022 15:12 by ADMIN
Created by: Andrew
Comments: 1
Category: Grid
Type: Feature Request
1
When scrolling is disabled for a grid and column resizing is enabled, resizing a column acts in a strange manner and attempts to size all columns of the grid.  I would expect that only the two columns on each side of the resize handle should have their widths altered.  Otherwise scenarios can occur where you are completely unable to resize columns.  If this would not be default functionality, I would at least suggest a flag to enable it at grid setup.
Unplanned
Last Updated: 23 Dec 2021 09:05 by ADMIN
Created by: quentin
Comments: 0
Category: Grid
Type: Feature Request
1
As explained in this support ticket
https://www.telerik.com/account/support-tickets/view-ticket?threadid=1063565 

I asked me questions about the Kendo-UI Grids toolBar that is only place at the top of datatables.

I’ve been reading on forum thread that, with javascript, we can place it elsewhere but i don’t think that it is very clean code and maintainable.

I'd like this toolbar to be adaptable according to the design I need !

So I suggest to modify/improve this component to fit more situations 
(eg.: 
 - to place it in the "page’s information zone"  for export buttons  
 - to place it at the bottom of datagrid for ending actions’ buttons because at the top is a good place to propose filters to user and way to organize datas
 - etc.) 

or 

to have the possibility to combine many situations (Toolbar & endToolbar & informationToolBar) with multiple toolbars at different places.
Unplanned
Last Updated: 23 Aug 2023 11:51 by Odd Veibust
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
8
<div data-role="grid"
                 data-editable="true"
                 data-toolbar="['create', 'save']"
                 data-columns="columns"
                 data-bind="source: products}"></div>


 var viewModel = kendo.observable({
products:  ...
 columns:[
        {field:"id", width:50},
        {field: "name", width:200}
         ...etc
        ]
});
Declined
Last Updated: 05 Mar 2020 09:25 by ADMIN
Currently, Kendo Grid has a "column.values" option that accepts an array of key/value pairs.  These values are used to render human-readable text for fields that are foreign keys.  Depending on how the grid is used, this array of "available values" could be dynamic.  Currently, there is no way to update these arrays without calling "setOptions" manually with the new, correct column definitions.

To fix this, Kendo Grid should track changes to the "column.value" array (via some sort of observable or something - I'm not sure exactly how things work under the hood).  Alternatively, "column.values" could also accept a function.  This function would return the up-to-date values array (Kendo Grid would have to be smart enough to execute the function whenever necessary).

Note:  this is the same functionality that has been requested by http://kendoui-feedback.telerik.com/forums/127393-kendo-ui-feedback/suggestions/13355043-kendogrid-allow-updating-columns-values-array-nee
Duplicated
Last Updated: 26 Jun 2020 12:43 by ADMIN
Created by: ahmed
Comments: 2
Category: Grid
Type: Feature Request
15
Enable kendo UI to Export excel with images
it would be a great feature if kendo supports to add images while exporting excel sheets
Declined
Last Updated: 15 Sep 2021 14:09 by ADMIN
i have a grid with number column and the template is replace the number with a text according to the number, but the sort is according to the number which is not correct.
for example: data[ status: 1 , 2 , 3 ]  the template return Cancelled for 1 Accept for 2 and in Processes for 3. it shoul be sorted in that order: Accept ,Cancelled, in Processes but actually is sort like that: Cancelled, Accept, in Processes 
Duplicated
Last Updated: 04 Jun 2020 09:22 by ADMIN
Users can change columns widths of the grid with their mouse. But there is no api methods to arbitrarily set column width in js. We implemented it using manipulating the DOM and a number of "hacks" to force the grid to recalculate it. But such implementation is complicated, quirky, inefficient and unstable.
It would be very useful if such methods were implemented. Reordering, hiding and locking already has its methods, only resizing doesn't. We use it to save and load user's settings.
Completed
Last Updated: 03 Mar 2020 10:29 by ADMIN
Created by: Igor
Comments: 1
Category: Grid
Type: Feature Request
2
I have a column that contains a checkbox and I would like to be able to prevent it from reordering, similar than sortable or groupable, that not all the columns can be sorted or grouped.

Thanks.
Unplanned
Last Updated: 03 Feb 2022 08:26 by ADMIN
Created by: Ɓukasz
Comments: 1
Category: Grid
Type: Feature Request
1
Allow users to get events callbacks in dragging columns in Grid widget i.e DragEnd, DragStart etc.