Unplanned
Last Updated: 26 May 2023 19:19 by Mark
Created by: Mark
Comments: 1
Category: Grid
Type: Feature Request
2

Hi Team, 

I would like to request a better way to be able to refresh the filters when the Kendo UI Grid refreshes.  I will elaborate more in an additional comment.

Thanks!

Unplanned
Last Updated: 23 Sep 2021 11:21 by ADMIN
In order to remove the default row expansion icon and enable clicking the row itself to expand/collapse row details I have to do the following hack:

dataBound: function() {
                    $grid.find(".k-hierarchy-cell, .k-hierarchy-col").hide(); //get rid of detail icon
                    $grid.on("click", "tr", function(e) {
                        var $target = $(e.target);
                        if (!$target.hasClass(chkBoxClass) && !$target.hasAttribute("href"))    // ignore clicks on row select checkbox & links
                        {
                            var $this = $(this);
                            $this.find("td.k-hierarchy-cell .k-icon").click();
                            $this.next().find(".k-hierarchy-cell").hide();  //fix detail row spacing due to missing icon
                        }
                    });
                }

As you can see, I need a supported way to be able to change the detail expansion behavior from using the default triangle icon. It would also be great to have using checkboxes to select rows built-in.
Unplanned
Last Updated: 23 Jan 2020 15:40 by ADMIN
Created by: Imported User
Comments: 2
Category: Grid
Type: Feature Request
2
please add navigate property to custom command that fill new page address with current row id to href of a tag to easily link to relation page
Unplanned
Last Updated: 08 Feb 2023 08:25 by ADMIN
Created by: Sam
Comments: 2
Category: Grid
Type: Feature Request
2

Hi Team,

I'd like to request the functionality to use the search panel with only the enter button with the built-in API.  Maybe add a search.minLength or search.SearchOnEnter configuration.  

Thank you!

Unplanned
Last Updated: 11 Nov 2021 16:09 by ADMIN
Allow inserting a row in a grid when the filter is applied and show the newly inserted row (even if it does not match the filter criteria) until the filter is re-applied by the user. This behavior is consistent with Microsoft Excel. Can the kendo grid be modified to support this behavior?
Unplanned
Last Updated: 03 Feb 2023 21:14 by Roy
Created by: Roy
Comments: 0
Category: Grid
Type: Feature Request
2

Hi Team,

I would like to request a demo/configuration which would allow the user to click on a cell during editing and have a Kendo UI Dialog to contain an editor such as a TextArea. 

Thank you!

Unplanned
Last Updated: 22 Nov 2021 15:43 by ADMIN
Feature Request: Provide Conditional Filtering as in Silverlight telerik Rad Grid along with checkboxes

Iam in the process of  migrating a project from silverlight containing telerik RAD Grid to Kendo UI containing the same Grid.

Unfortunately, i see that the default filtering option provided in kendo Grid is different than in silverlight, where the default conditonal filtering is missing in the HTML based solution. I could see only the checkbox selections 

It would be a great to have feature with the telerik products being exhibiting the same functionality
Unplanned
Last Updated: 10 Oct 2019 04:37 by ADMIN

I'd like to request the functionality to change the multiple selection process of the Kendo UI Grid to be the same as Excel.  For example, the following shows a block of cells selected instead of all of the cells in-between the selected cells from Shift+Clicking:

Thank you!

Unplanned
Last Updated: 05 Jul 2021 07:25 by ADMIN

Currently, when a foreignKey column is configured in a Grid and the value is null, the valuePrimitive option of the DropDownList should be set. However, in order to set the valuePrimitive for foreignKey column configuring a custom editor is needed as described in the link here. I would like to have the possibility to set the valuePrimitive option as part of the column configurations, without adding a custom editor. For example:

columns: [
              { field: "name", title: "Name" },
              { field: 'category', title: 'Category', width: '200px', values: categories, valuePrimitive: true}
            ]
Unplanned
Last Updated: 14 Mar 2024 11:26 by ADMIN
Created by: AGB
Comments: 5
Category: Grid
Type: Bug Report
2

Hiding the first column in Grid will show a 2 pixels left border instead one.

Dojo Sample to replicate the issue: https://dojo.telerik.com/ubaLiYEN

Steps:

1. Hide the first column (OrderID) from the Column Menu.

2. Notice the doubled left-border on the left hand side of the Grid.

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: 01 Oct 2020 12:46 by ADMIN
I would like to request the feature to allow auto-Scrolling in the Kendo UI Grid when selecting cells outside of the displayed view of records.  I would specifically like to see this feature for columns out of view from the right or left.  This would be similar to Excel's behavior.

Thank you!
Unplanned
Last Updated: 14 Sep 2023 12:34 by Santhosh

Currently, when the draggable column is also set to locked the rows cannot be reordered. -  Dojo - https://dojo.telerik.com/@NeliKondova/ErOlEgUP

I would like to be able to reorder the rows in the Grid when the draggable columns to locked.

Unplanned
Last Updated: 14 Sep 2021 11:15 by ADMIN
Created by: Michael
Comments: 2
Category: Grid
Type: Feature Request
2

Grid control doesn’t allow to change width of columns via keyboard. Column width adjustments could be done only via mouse. It would be great to have this ability from the accessibility perspective.

Reproduction of the problem

  1. Open https://demos.telerik.com/kendo-ui/grid/index
  2. Set focus on header of any column
  3. Try to change width of the column

Current behavior

No hot key to change width.

Expected/desired behavior

Any hot key (e.g. Shift + Arrow Left / Right) to change width of a column.

Environment

Kendo UI version: "2020.3.1118"
Browser: Chrome 90.0.4430.212

Unplanned
Last Updated: 11 Nov 2021 12:53 by ADMIN
Created by: Maxim
Comments: 0
Category: Grid
Type: Feature Request
2
The current table initialization used in grid is not robust and does not supports many features. The main reason is because _columns function in grid does not leverages existing framework functionality. I propose to slightly modify the existing code responsible for parsing column configuration to use kendo.parseOptions instead of working directly with attributes. You can see my re-implementation of this function at [http://jsbin.com/pihefuva/1].
Unplanned
Last Updated: 05 Dec 2023 21:56 by Vugar
Created by: Vugar
Comments: 0
Category: Grid
Type: Feature Request
2

Hi Team,

I would like to ask for a configuration to be added to the Kendo UI Grid which would allow for the ScrollBar thickness to be modified.  

Thank you!

Unplanned
Last Updated: 04 Nov 2021 12:10 by ADMIN
If you are on the last page of a set of data and delete the last item from the page the pager does not reset to the previous page. This seems like an obvious bug to me.

Steps to reproduce:

Go to Grid Demo: http://demos.telerik.com/kendo-ui/grid/editing-inline
Select "Edit this example"
Change the pageSize of the dataSource from 20 to 2
Run the demo
Go to the last page
delete the two items on the page

Result: Grid does not move to previous page and incorrectly displays the item number as higher than the total number of items.
Unplanned
Last Updated: 07 Jan 2020 12:17 by ADMIN
Created by: YUANTAO
Comments: 0
Category: Grid
Type: Feature Request
2

Hi,

We are using Fusion software and the grid ARIA attributes of rows are "aria-describedby". This results in the invalid/wrong action tips for Fusion users. If we change it to "aria-labelledby" it works well. 

Currently, we have to override the private method _tmpl so we can edit the hardcoded attribute. We need to be able to change this part of the source:

if (navigatable) {
    rowTemplate += " aria-describedby='" + column.headerAttributes.id + "'";
}

It would be great if we can configure them from the grid settings.

$("#grid").kendoGrid({
 ariaAttribute: "aria-describedby"
});

Then the _tmpl function will change like this:

if (navigatable) {
  rowTemplate += (that.ariaAttribute ? that.ariaAttribute + "='" : " aria-describedby='") + column.headerAttributes.id + "'";
}

Thank you in advance.
Unplanned
Last Updated: 06 Nov 2020 13:02 by ADMIN
For example.
Consider table with 2 columns.
 - Task (limited number of possible tasks type)
 - Description (free text descriptions)

I would like to have table with multi-check on Task column and row filtering on Description column.
Unplanned
Last Updated: 25 Nov 2021 12:39 by ADMIN
Created by: Imported User
Comments: 0
Category: Grid
Type: Feature Request
2
Ability to set accesskey on toolbar actions without having to do a template.