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!

Completed
Last Updated: 13 Jan 2024 18:31 by ADMIN

Bug report

The behavior has been introduced in R3 2020.

Reproduction of the problem

Dojo example.

  1. Run the example

Current behavior

The sticky column's left border is not displayed.

Expected/desired behavior

The sticky column's left border is displayed.

Environment

  • Kendo UI version: 2020.1.119
  • jQuery version: x.y
  • 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: 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
Completed
Last Updated: 22 Mar 2021 12:39 by ADMIN
Release 2021.R1.SP.next
Created by: Garry
Comments: 3
Category: Grid
Type: Bug Report
0

So we are loving the sticky columns in Kendo UI v2020.3.1118 JQuery Grid however we are experiencing a synchronisation issue between the column headers and the filter rows.

The attached screenshots and video show the problem.

I tried to find a solution in your KB's but am reaching out to you in case you can recommend a solution?

Ideally, the filter row would know about the sticky columns, but it seems not to.

Kind Regards, Garry.

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: 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]
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]
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: 16 Dec 2020 10:25 by ADMIN
Created by: Mark
Comments: 3
Category: Grid
Type: Feature Request
16

Hi,

Hopefully you can help us out with this!

On Kendo Grid, when filtering, we have an option 'Select All' as you can see below.

 

Now if we run a search for 'B' we get the below:

Now the select all option has disappeared and in some cases we would have a lot of options to enable.

 

Any ideas?

Thanks

Mark

 

 

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);
            }
        };

Completed
Last Updated: 29 Mar 2021 12:50 by ADMIN
Release 2021.R1
Created by: Amitesh
Comments: 1
Category: Grid
Type: Bug Report
0

Hi

Please see the attached. The search box styles are broken.

Declined
Last Updated: 10 Nov 2020 11:42 by ADMIN
Created by: Devna
Comments: 1
Category: Grid
Type: Feature Request
0

Hi,

I raised a forum support ticket for hiding the scrollbar when the data rows is <= pagesize. https://www.telerik.com/account/support-tickets/view-ticket/1493109

The response was to set the scrollbar overflow to auto and padding removed which caused overlapping of the scrollbar with the last column when visible. 

 

Feature is requested to have this feature inbuilt with Grids having Virtual Scroller to avoid it.

 

Thanks

Devna

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?

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 ]

Duplicated
Last Updated: 03 Nov 2020 10:09 by ADMIN

Hi,

I updated my project to Kendo UI for jQuery 2020.3.1021 but then all Grids stopped working on mobile or tablet devices. When downgrading to 2020.3.930 grids works fine. Also tried it with 2020.3.1028 but same issue.

I have tested it on iPad, iPad Pro, Samsung S10. Same issue with Chrome/Edge Chromium and emulate a mobile/tablet device.

In the browser console you can see the javascript error: "Cannot read property 'rows' of null".

Reproduction of the problem:

  1. Go to https://demos.telerik.com/kendo-ui/grid/index
  2. Hit F12 top open the Developer toolbar
  3. Click on "Toogle device toolbar" (CTRL + SHIFT + M)
  4. Choose any device, ex: iPad, iPhone
  5. Reload page to make the changes take effect
  6. Click on "Run live demo"
  7. Grid not loading!!
  8. Console is showing a JavaScript error: "Cannot read property 'rows' of null"

 

Declined
Last Updated: 02 Nov 2020 13:46 by ADMIN

Hi,

I hope you all are doing well.

I have a grid (Asp.net core) with groupable: true. Users are able to do grouping by all the columns.

Requirement 1

Some of the groups are quite large, so users would like to be able to select the entire group (whether it is open or collapsed).

Requirement 2

I would also like to show the count of the items in the group header (for each group).

I tried to do it with "ClientGroupHeaderColumnTemplate" and adding a button in the template and associate JavaScript to the button to select and unselect the rows in entire group but it didn't work! I search in your forum and saw this example for kendo jQuery:
http://jsfiddle.net/xwfg3/1/

But I couldn't make it for ASP.net Core grid. This example is almost what I wanted except that in the example grouping is doing in kendo initial but In my case users are going to do grouping. It's not pre-defined.

Could you please guide me how can I make it for kendo grid in asp.net core? I really appreciate if you could make an example.

Requirement 3

The thing is that in my real project I am using serveroperation(true) in order to avoid rendering too much records. and I found that cause the problem.  I also do grouping, sorting, filtering in api side in my real project and return back a filtered, sorted and grouped object  to web.

Thanks.

Unplanned
Last Updated: 21 Oct 2020 09:28 by ADMIN

### Feature Request

The TypeScript definitions of the Kendo UI Grid are missing the "editable" object - the object that is built runtime when the grid enters edit mode. 

### Environment

* **Kendo UI version:** 2020.3.915
* **jQuery version:** 1.12.4
* **Browser:** [all]