Declined
Last Updated: 16 Mar 2021 12:56 by ADMIN
With the latest version, we could see extra options in Grid filter. Is there any way by which we can make it configurable? 
Completed
Last Updated: 15 Mar 2021 14:26 by ADMIN
Release 2021.R1.SP.next
Created by: Jack
Comments: 9
Category: Grid
Type: Bug Report
1

I'm currently get my application up to WCAG 2.1 compliance, however im come across an issue with the kendo grid that is causing it to fail.

when I load up the page there are no issues, the column headers id is a randomly guid and the cells below aria-describedby attributes reference that guid.
However when I press on the column header it sorts the column however in doing so it changes the id of header and this causes the cells below to have their aria-describedby attribute to reference an id that doesn't exist anymore. 

I have the grid keyboard navigable.

Is there anyway to force it to always use an id?

Declined
Last Updated: 04 Mar 2021 12:40 by ADMIN
Created by: Sushant
Comments: 5
Category: Grid
Type: Bug Report
0

Hi,

In my kendo grid , when i apply a filter to 2 columns, first i apply filter to numeric column which results in no value and then after that i applies the filter to a string column combined with numeric column which also results to no value, Nothing is displayed. But when i remove the value from textbox of numeric column and enter filter, no data being displayed as string column filter is there but in case i remove the value from textbox of string column and enter filter , numeric column filter also got removed.

I also checked the kendo functionality , but not getting any solution for this problem.

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: 04 Mar 2021 12:19 by ADMIN
I have an event handler for when a drop down inside the grid changes that calls .set("MyField", myValue).  Behind the scenes, kendo sets the current cell to the first cell in the grid!  I would like the current cell to be preserved so that the grid works for keyboard navigation as well as point-and-click.
Declined
Last Updated: 04 Mar 2021 12:13 by ADMIN
Created by: Paul
Comments: 2
Category: Grid
Type: Feature Request
2
In a grid with 'inline' edit that has rows that are wider the the viewport when entering edit mode the grid now positions on the first editable cell in the grid. This should be the cell that was selected before going into edit mode. In other words the grid should persist its scrolling position.
Declined
Last Updated: 04 Mar 2021 12:11 by ADMIN

$scope.OptionsGridApplication_Team_Settings = {
            dataSource: $scope.DataGridApplication_Team_Settings,
            resizable: false, selectable: "single",
            columns: [
                {
                    field: "TeamName",
                    title: "TeamName",
                    encoded: false,
                    hidden: true,
                    attributes: { "class": "ellipsisTextSpan", },
                    template: function (e) { return createCoulumnTitle(fakingAngularCharacter(e.TeamName)) },
                    groupHeaderTemplate: function (e) {
                        var html = '';
                        html = html + '<span class="headerTeamGroup"  data_TeamId="' + e.value + '" title="' + e.value + '">';
                        html = html + stringCutterA(e.value, 131);
                        html = html + '</span>';
                        return html;
                    },

                },
                {
                    field: "SystemIdentifier", title: "Environment Name", encoded: false,
                    attributes: { "class": "ellipsisTextSpan", }, template: function (e) { return createCoulumnTitle(fakingAngularCharacter(e.SystemIdentifier)) }
                },
                {
                    field: "EnvironmentType", title: "Environment Type", encoded: false,
                    attributes: { "class": "ellipsisTextSpan", }, template: function (e) { return createCoulumnTitle(fakingAngularCharacter(e.EnvironmentType)) }
                },
                {
                    field: "URL", title: "Environment URL", encoded: false,
                    attributes: { "class": "ellipsisTextSpan", }, template: function (e) { return createCoulumnTitle(fakingAngularCharacter(e.URL)) }
                }

            ],
            dataBound: function () {
                debugger;
                serviceFactory.AccessibilityGridEmpty(this);
            }
        };

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