Unplanned
Last Updated: 24 Feb 2021 19:30 by ADMIN
Created by: Dev
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

We'd like to ask for the functionality of saving asynchronously records with the Kendo UI Grid in a Batch edit mode that would be non-blocking and not interrupting.  For example, a user can continue to edit without the loading symbol appearing and causing a delay in editing when the dataSource.sync() fires.

Thank you!  

Declined
Last Updated: 22 Feb 2021 15:01 by ADMIN

Bug report

In a Grid with checkboxes in the first column, if you navigate through the Grid for a second time, only the checkboxes are focused.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/EZERotAN/5.
  2. Navigate through the whole Grid with tab.
  3. Navigate a second time through the Grid.

Current behavior

When navigating through the Grid for a second time, only the checkboxes are focused.

Expected/desired behavior

All the cells of the Grid should be focused.

Environment

  • Kendo UI version: 2020.3.1118
  • Browser: [all]
Completed
Last Updated: 19 Feb 2021 14:24 by ADMIN
Release 2021.R1.SP.next

Bug report

Selecting cells from the frozen table in Frozen columns + selectable: "multiple cell" scenario selects the bellow cells from the non-frozen table

Reproduction of the problem
Open below Dojo

https://dojo.telerik.com/exobAcEl

Scroll the horizontal scrollbar to the right.

Select some cells from the frozen table.

Move the scroller back to its original position.

Expected/desired behavior

Cells from the non-frozen table shall not be selected.

EnvironmentKendo UI version: [all]
Browser: all

Unplanned
Last Updated: 17 Feb 2021 16:25 by ADMIN
Created by: Brandon
Comments: 1
Category: Grid
Type: Feature Request
0

I just recently upgraded to the latest version of Kendo UI (2021) and noticed one of my screens broke.  I'm not sure if this was something that you intended on breaking so I wanted to report it as a bug.  I had a screen with a grid in which the detail contained a child grid.  This particular screen doesn't have a lot of rows and the due to the usage of it the detail is extremely important and I have it set to auto expand.  The auto expand still works in the respect that the rows show as expanded but every row has the same detail...which is the detail belonging to the first row.  Here is a dojo showing the bug in action: https://dojo.telerik.com/@bowensby/EfUMihUp.

The main place to focus is the dataBound event on the main grid. I found a workaround using the commented out lines (the .each in jquery).  The original way is cleaner but it only causes detailInit one time and therefore repeats the same detail for every row.

Unplanned
Last Updated: 16 Feb 2021 16:03 by ADMIN
Created by: Robert Madrian
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request an CancelIconClass property for the Kendo UI Grid's toolbar which would allow an easier way to change the cancel icon rather than using CSS. 

Thank you!

Duplicated
Last Updated: 16 Feb 2021 15:18 by ADMIN
A method to display all the currently set column filters
 
For Example: Grid with a column filter set to City and Last name would be displayed like so:

City is “San Diego” and Last Name contains “Smith”

Additionally, it would be nice to be able to display all the filters in a template above or below the grid; the template could then have a “clear all filters” button.
Completed
Last Updated: 16 Feb 2021 14:56 by ADMIN
New items (rows) are not shown in grid when they don't match the filter settings made to the grid.
So it would be really useful if applied filters and sortings were resetted when new items are created.
Completed
Last Updated: 15 Feb 2021 17:47 by ADMIN
Release 2021.R1.SP.next

Bug report

When there are sticky columns in Grid and the horizontal scrollbar is visible, the text of the columns is overlapping while scrolling.

Reproduction of the problem

  1. Open the Dojo in fullscreen
  2. Resize the browser in order for the horizontal scrollbar to be visible and scroll

Current behavior

The text of the columns is overlapping

Expected/desired behavior

The text of the columns in Grid should not overlap whiles scrolling

Workaround

window.addEventListener('resize', function(){ $("#grid").data().kendoGrid._updateStickyColumns(false); });

Dojo

Environment

  • Kendo UI version: 2021.1.119
  • Browser: [all ]
Completed
Last Updated: 15 Feb 2021 11:56 by ADMIN
Release 2021.R1.SP.next

Bug report

In a Grid with checkboxes in the first column, when tabbing through the Grid, the checkbox in the first row is skipped.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/EZERotAN/5.
  2. Start navigating from the beginning of the Grid.

Current behavior

While navigating, the checkbox on the first row is skipped and the ID column will be focused instead.

Expected/desired behavior

The checkbox should not be skipped.

Environment

  • Kendo UI version: 2020.3.1118
  • Browser: [all]
Unplanned
Last Updated: 15 Feb 2021 09:17 by ADMIN
Created by: Aleksandr
Comments: 0
Category: Grid
Type: Feature Request
1

would be great to have, will help to make logic easier if we want to save the value to share across all the grids in app

 

P.S - also would be great to use pageSize = All in Datasource instead of undefined

Unplanned
Last Updated: 15 Feb 2021 09:10 by ADMIN
When scrolling data in a grid using the virtualization scrolling option, the query to fetch the next section of data will occur twice. It does not happen for every query, but it does happen all the time regardless of scrolling fast or slow.
Unplanned
Last Updated: 10 Feb 2021 17:14 by ADMIN
Created by: Louis
Comments: 0
Category: Grid
Type: Feature Request
3

Hi Team,

I'd like to request the functionality to add an unsort option to the Kendo UI Grid's Groupable sort direction.  

Thank you

Declined
Last Updated: 10 Feb 2021 10:22 by ADMIN
Created by: Aleksandr
Comments: 1
Category: Grid
Type: Feature Request
0
same as we have for regular numeric textbox, to have an property for the grid field
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: 09 Feb 2021 08:08 by ADMIN
Created by: Jyotika
Comments: 1
Category: Grid
Type: Bug Report
1

Hi Team,

Kendo grid does not allow all columns to be hidden from column menu as it disables the check box for last column in column menu.

But if we set hidden = true and menu = false properties for column, grid hides that column from grid and column menu, but enables the checkbox to hide all columns from grid leaving it empty. After which we can't get back the columns in grid which isn't valid.

Grid should always allow at least one column to be included in grid/menu.

Please find attached screenshot and below sample link.

https://dojo.telerik.com/EHOgaJUK/2

Thanks,

Jyotika

Duplicated
Last Updated: 05 Feb 2021 06:49 by ADMIN
Created by: Salla
Comments: 2
Category: Grid
Type: Bug Report
0

Version of Kendo UI Grid: v2016.3.1028

There appear to be a few accessibility issues with the pager control for kendo grid when using a screen reader:

1. Screen Reader is not notifying about the disabled control elements. For example: 'Go to First Page' , 'Go to Previous page'. The screen reader just narrates the name of the control.

2. When navigating to the pages--screen reader is narrating some irrelevant information about the page elements say 'Link label one of one , Link two of two label one , Link three of three label one.

Obviously an older version of the kendo ui grid is being used--but I wanted to confirm that these issues have been fixed for more recent versions. For accessibility compliance a user should be informed via screen reader if a link is disabled and pages should be clearly announced when selected. 

 

Thanks!

Unplanned
Last Updated: 28 Jan 2021 15:12 by ADMIN
would help to get rid of our own implementation of the grid search & make integration with other components more easier 
Completed
Last Updated: 13 Jan 2021 16:14 by ADMIN
Release 2021.R1
Created by: omti
Comments: 0
Category: Grid
Type: Bug Report
1

Bug report

When the Grid is used with MVVM, if there is a footer template defined for a given column and 'data-auto-bind' is set to false, the footer template is not rendered properly.

Reproduction of the problem

  1. Open this Dojo and run it. See the expected footerTemplate result
  2. Change the 'data-auto-bind' property to false
  3. Run the project again

Current behavior

The footerTemplate defined for the "Unit" column is displayed under "ProductName"

Expected/desired behavior

The footerTemplate defined for the "Unit" column should be displayed under the "Unit" column

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 25 Dec 2020 16:03 by Kevin
Created by: Gary
Comments: 3
Category: Grid
Type: Feature Request
12

The Kendo Grid has select() method, but is missing unselect() method. I believe that it will be a good and useful addition to the grid.

Completed
Last Updated: 18 Dec 2020 11:37 by ADMIN
Release 2016.Q1
Created by: Stuart
Comments: 45
Category: Grid
Type: Feature Request
315
The grid has a number of built in filters, what is not supported is searching for cells that have no value or some value (i.e. NULL or NOT NULL).
This would be a very useful addition.