Declined
Last Updated: 06 Mar 2020 16:06 by ADMIN
Some of us use custom cell editors with multiple checkboxes (or other multiple inputs) and right now we can't use the data-bind syntax to automatically update the model when the user moves away from the cell. We also can't use the grid's "save" event because it won't fire.
Please add support for the grid column to bind to arrays, OR at least let us specify in the model or grid declaration that we want the "save" event to fire (even when you wouldn't normally do it).  This event would allow us to manually get the values of all checkboxes and update the model.
Declined
Last Updated: 06 Mar 2020 09:20 by ADMIN
It would be like to setting the Edit Row and Filter Row to support checkbox without ClientTemplate. It is a very very common editor type for boolean field.
Declined
Last Updated: 06 Mar 2020 13:15 by ADMIN
Created by: Imported User
Comments: 6
Category: Grid
Type: Feature Request
12
Similar to http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/alleditablecolumns/defaultcs.aspx or http://demos.devexpress.com/ASPxGridViewDemos/GridEditing/EditForm.aspx
Completed
Last Updated: 17 Jan 2020 11:48 by ADMIN
Release 2018.R1
Created by: Taylor
Comments: 1
Category: Grid
Type: Feature Request
12
We now have operators that support filtering for null/empty values in grid columns.  These are available using the standard Filter Menu, which provides input fields and the operator dropdown list.  Our users really love the Multi Checkbox filtering, which allows them to choose any number of possible values at the same time.  The missing feature is that the Multi Checkbox filtering prevents us from finding the "empty" rows.

Much the same way that "Select All" is automatically added to the list of checkboxes, please add some sort of "null/empty" item to the list.  It would be great if this was configurable.  In some of our columns, it's not possible to have empty values, so it doesn't make sense to include the "empty" checkbox for those columns.

Be sure to handle scenarios when the data source is automatic based on the data in the grid and when a separate, custom data source is provided for the column.
Completed
Last Updated: 25 Nov 2020 10:30 by ADMIN
Release 2020.R3.SP2

Bug report
Reproducible in mobile mode enabled


Reproduction of the problem
1. Open below demo and enable mobile mode

2. Refresh

https://demos.telerik.com/kendo-ui/grid/editing

Current behavior
Error is thrown, grid not bound 

Expected/desired behavior
No error shall appear

Environment
Kendo UI version: 2020.3.1021
jQuery version: x.y
Browser: [Chrome | Firefox ]

Completed
Last Updated: 24 Jan 2024 14:29 by ADMIN
Created by: Bridge24
Comments: 5
Category: Grid
Type: Feature Request
12

Hi, we use the grid "toolbar" property.  But, we found that the documentation of the kendoToolBar "standalone" offers more possibilities, like adding a type "separator", groups, toggle, ...

My question is:
When I create my grid, is it possible to get a reference to its containing kendoToolBar (if it's a complete kendoToolBar ?), that allow to add more complex items.

Something like: 

var kgrid = $('#grid1').kendoGrid({toolbar: [...]}).data("kendoGrid").

var kToolbar = $('#grid1 .k-grid-toolbar').data("kendoToolBar") // or kgrid._secret_property?

kToolbar.add({type: "separator"})

I tried that, but the kToolbar is undefined.

 

Completed
Last Updated: 23 Sep 2019 09:22 by ADMIN
Created by: Tino
Comments: 3
Category: Grid
Type: Feature Request
11
Please add out of box functionality ( MVC and Kendo ) for simple search panel like DevExpress : 
http://demos.devexpress.com/MVCxGridViewDemos/Filtering/SearchPanel
Unplanned
Last Updated: 07 Feb 2020 11:23 by ADMIN
In a Kendo grid, Angular/MVC/JS/Whatever; 
When using multi check filter. 
---- 
Only show those values that are still useful to filter on!!! 
---

When filtering is done(one to many columns) - ONLY the remaining options should be seen when setting the NEXT filter (not all possible values in the database) of course distinct and sorted

(the grid could have an option of doing it this way or the old way) 
example:

let's say we have 5 numbers of categories, each category have 20 different details.

when filtering is set on one category, then when filtering on details - only the 20 remaining details should be seen, not 100(5*20)

and vice verse, if filtering one detail - only one category should be seen when filtering on category.
Completed
Last Updated: 12 Mar 2020 09:19 by ADMIN
Created by: Valentyn
Comments: 3
Category: Grid
Type: Feature Request
11
Currently its possible to set static attributes or CSS classes to kendo grid columns by specifying then in column definition:

var columns = [{ field: 'someData', title: 'Some Data', attributes { 'class': 'some-css'} }];

Please add possibility to add custom attributes or CSS Classes dynamically (depending on data row):

var columns = [{ field: 'someData', title: 'Some Data', attributes { 'class': function(dataRow){ return dataRow.data > 1 ? 'css-go-up': 'css-go-down' }} }];

Just similar how it works with template for column.

Thanks,
Val
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.
Completed
Last Updated: 05 Jul 2021 14:01 by ADMIN
I realize the grid's batch save is asynch, but most every project I work on has a need to know when grid saving is complete.  Right now you can know when each of the CRUD operations is complete, but not when ALL are complete.  Please either add an event for when ALL are completed, or give us the option to have the grid send ALL CRUD operations to the server at one time.
Declined
Last Updated: 10 Feb 2021 06:55 by ADMIN
Created by: Emma
Comments: 3
Category: Grid
Type: Feature Request
10
I have recenty found that if users include <html> tags in fields in a form, and this data is then displayed in a grid, if the user then groups by that column, raw html will be displayed. The "suggested" way around this potential huge security flaw is to use a group header template for every string column, ensuring the value is displayed encoded using ${value} instead of the default #=value#.

The default for a cell is ${value}
Completed
Last Updated: 12 Mar 2020 14:56 by ADMIN
Created by: Inception
Comments: 5
Category: Grid
Type: Feature Request
10
When using multiple sort mode in a grid, visualize the sort order in which the grid is sorted. For example, displaying the sort order as 1,2,3,.. on the respective column headers. Without such an indication the user has no idea what sort order has been used.
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.
Duplicated
Last Updated: 02 Sep 2021 11:22 by ADMIN
Created by: Imported User
Comments: 0
Category: Grid
Type: Feature Request
10
sometimes you use same data which presented with grid and chart, but sometimes it need to be grouped by different categories such as in chart or grid, the problem is that you need to map data between categories in the chart and the grid
Completed
Last Updated: 31 Aug 2020 08:13 by ADMIN
Release 2020.R3

Bug report

ColumnMenu in Grid does not hide/unhide the correct column when command column is placed first

Reproduction of the problem

  1. Open the Dojo
  2. Open the columnMenu for one of the columns
  3. Try to select a column, for example "Unit in Stock"

Current behavior

Currently, the previous column is checked/unchecked and respectively hidden ("Unit Price")

Expected/desired behavior

The column that is selected in the columnMenu should be hidden or displayed and checked/unchecked in the columnMenu

Environment

  • Kendo UI version: 2020.2.617
  • Browser: [all ]
Declined
Last Updated: 16 Mar 2020 09:09 by ADMIN
Created by: John
Comments: 2
Category: Grid
Type: Feature Request
10
Basically, when a boolean is placed in a grid, it displays true/false.  It would be better to show it either checked/unchecked.  There is a template to be used, but it has a couple of issues:
1. you need to define it for every check box
2. It is either enabled or disabled.  Ideally, it should be disabled in display mode, and enabled in edit mode.
Unplanned
Last Updated: 01 Oct 2021 14:19 by ADMIN
We are using the grid primarily to view paged sets of data, so in most cases we will see 10 to 25 records at one time.  Regardless of the number of records visible, the vertical scrollbar appears in a disabled state.  From my understanding, grid scrolling is either on or off, there is no Horizontal:On, Vertical:Off capability.  Our users often see multiple grids per page and the presence of these useless scrollbars creates visual clutter.  I am requesting the ability to independently set the visibility of the vertical and horizontal scrollbars on the grid in such a way that the grid's header and footer adjust to fill the empty space created where normally the scrollbar offset padding (17px) applied as an inline style in the _scrollable method of the grid javascript.  I envision this working via the kendoGrid settings object like so:

{
...
scrollable: { x: true, y:false }
...
}
Completed
Last Updated: 04 Mar 2021 12:23 by ADMIN
In a navigatable grid with row selection mode, It should be possible to focus row using arrow keys (up or down) instead of space bar.

Right now when user press arrow keys, only once cell is being highlighted and focused. If user wants to highlight that row then he needs to press spacebar.

this behavior is confusing for end user.
Completed
Last Updated: 15 May 2017 11:29 by ADMIN
Currently, kendo-styled checkboxes are not rendered for the default column editors for Boolean columns.  Instead, default browser checkboxes are rendered.

In addition, kendo-styled checkboxes are not supported (and indeed do not function correctly) in custom column editors.

This issue creates a styling consistency "blemish" on pages where we've otherwise been totally consistent with a Kendo theme.

Please alter the grid behavior so that it both renders Kendo-styled checkboxes for the default Boolean column editor, and allows them for custom column editors.