Completed
Last Updated: 14 Nov 2017 17:57 by ADMIN
Created by: Sandro
Comments: 3
Category: Grid
Type: Feature Request
17
Same Feature as in Demo of JQuery: http://demos.telerik.com/kendo-ui/grid/column-resizing

Should emit an event with column sizes, so they could be stored in user settings.
Completed
Last Updated: 21 May 2018 14:47 by ADMIN
Angular 4x. version version of Grid must support all grid features we had in JQuery based version with Bootstrap CSS support.  

http://demos.telerik.com/kendo-ui/grid/index 
Completed
Last Updated: 18 Jan 2018 17:30 by ADMIN
Created by: Misiu
Comments: 1
Category: Grid
Type: Feature Request
16
Currently KendoUI supports responsiveness (http://demos.telerik.com/kendo-ui/responsive/) Ideally all Angular 2 controls should behave in same way, this would allow creating pages that work nicely on desktop, tablets and mobile.  
Completed
Last Updated: 20 Aug 2021 14:38 by ADMIN
Created by: Imported User
Comments: 6
Category: Grid
Type: Feature Request
15
i am using Telerik Angular Editing Grid for list editing of data.one of our main requirements is to copy a cell value and multiselect cells to paste data. this requires Angular grid to provide out of the box multi cell selection mode so that upon action respective cell values get updated
Completed
Last Updated: 13 Jul 2021 12:09 by ADMIN
Created by: Thomas
Comments: 3
Category: Grid
Type: Feature Request
15
Whenever the column is resized in a way so only part of the headertext is shown, I would like a tooltip to appear.

Earlier we did something like this with jQuery

  if(this.offsetWidth < this.scrollWidth && !$this.attr('title')){
        $this.attr('title', $this.text());
    }

Should be possible to provide a tooltip-template (not just set title attribute)
Completed
Last Updated: 09 May 2017 10:10 by ADMIN
The behavior is inspired by the responsive utilities of Bootstrap: https://v4-alpha.getbootstrap.com/layout/responsive-utilities/ 

The column visibility feature may be implemented through the `visibleFrom` and `hiddenFrom` column properties. These allow columns to be shown / hidden based on the **viewport size**. For example,

```
    {
        visibleFrom: 1024, // show column on viewports bigger than or equal to 1024px
        hiddenFrom: 680 // hide column on viewports bigger than or equal to 680px
    }
```

We can cater for developers who use Bootstrap by providing presets, based on the Bootstrap 4 responsive monikers - https://v4-alpha.getbootstrap.com/layout/grid/#variables  (`xs` / `sm` / `md` / `lg` / `xl`). See the link for the default values.

```
    {
        visibleFrom: "md", // show column on medium-sized viewports (and above)
        hiddenFrom: "sm" // hide column on small-sized viewports (and above)
    }
```
The `visibleFrom` and `hiddenFrom` properties influence the default column visibility. The `visible` property overrides the default visibility -- columns declared as `visible: false`, show on every device, and columns with `visible: false` won't show at all. Notice that the `visible` property is 

The resize sensor component will be used to create the responsive pager, as the pager behavior is related to the grid width and not the viewport width.

Interoperability with the column menu (show/hide columns) can be achieved through the use of the `visible` property, to allow the default behavior to be overwritten. This raises problems when the application is switched between different screens, as the menu needs to work with a nullable boolean.
Completed
Last Updated: 24 Apr 2017 14:39 by ADMIN
Created by: Jeremy
Comments: 2
Category: Grid
Type: Feature Request
15
Option to export to CSV, Excel, etc.
Completed
Last Updated: 23 Feb 2024 06:47 by ADMIN
We need copy-pasting data from Excel to Kendo UI for Angular Grid, and it is available in old telerik component for silverlite application
Completed
Last Updated: 04 Apr 2022 07:07 by ADMIN
Created by: David
Comments: 2
Category: Grid
Type: Feature Request
13

Hello,

The list view component provides a loader template. This is easier to work with than the mechanisms provided for the grid component. For the sake of consistency of approach, I would like to request that a grid loader template directive be provided for the grid component, similar to the one available for the list view that is seen here: https://www.telerik.com/kendo-angular-ui/components/listview/api/LoaderTemplateDirective/

Thank you,

David

Completed
Last Updated: 30 Jun 2021 12:52 by ADMIN
Created by: Misael
Comments: 2
Category: Grid
Type: Feature Request
12
The first row of the grid should be selected as default, in case some data on the screen depends upon the selection in the grid without the need for the user to select one to show information.
Completed
Last Updated: 18 May 2021 15:27 by ADMIN
Created by: Павел
Comments: 2
Category: Grid
Type: Feature Request
12
Add events like detailInit, detailExpand, detailCollapse in the Kendo Grid for jQuery. Add possibility to know whether the detail template is expanded or not.
Completed
Last Updated: 19 Jan 2018 11:52 by Abelardo
Created by: Justin
Comments: 3
Category: Grid
Type: Feature Request
12
The new Kendo for Angular Grid doesn't look to have any keyboard support. This is necessary to pass Section 508 a11y. I don't see any items on the Kendo github, nor any ideas in this portal. 
Completed
Last Updated: 13 May 2020 08:08 by ADMIN
Created by: Batdelger
Comments: 1
Category: Grid
Type: Feature Request
10
I want to display my data in multiple type of views (grid, listview ...etc). So I need to place PagerComponent outside of GridComponent
Completed
Last Updated: 13 Jul 2021 11:27 by ADMIN
Created by: Marian
Comments: 1
Category: Grid
Type: Feature Request
9
Introduce support for Loading / Error templates for components. eg.:

<kendo-grid [success]="boolean" [loading]="boolean>
  <div kendo-error-template>
   We Cannot load your data
  </div>

 <div kendo-loading-template>
    <!== some kind of spinner, or just text>
  </div>
</kendo-grid>
Completed
Last Updated: 13 May 2020 07:59 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
9
It would be nice to have support for horizontal virtual scrolling for the Grid in cases of large number of columns. Just like the current feature for vertical scrolling, in which you can update the visible rows through a pageChange() event handler.
Completed
Last Updated: 24 Apr 2017 14:46 by ADMIN
Created by: Arun
Comments: 1
Category: Grid
Type: Feature Request
8
MultiColumn Headers Support like in Kendo UI Grid
Completed
Last Updated: 24 Apr 2017 14:51 by ADMIN
Created by: Rod
Comments: 1
Category: Grid
Type: Feature Request
6
We are seeing warning that <template> is deprecated and to use <ng-template> instead. Can this be addressed? Is the May release going to compatible with Angular 4?
Completed
Last Updated: 04 Jun 2020 11:05 by ADMIN
Created by: Mariana
Comments: 2
Category: Grid
Type: Feature Request
5
I need to expand/collapse grid rows programmatically. I know about grid.expandRow/collapseRow, but there is no public methods which can get me know  is row expanded at this moment and collapse it. I need to manage in component array of expanded rowIndexes and every time to check is row expanded,then call method collapseRow, which again, under hood, using your private method this.detailsService.isExpanded(index), is doing this check. It's very inconvenient.  So, can you expose this methods or toggleRow() to allow us get rid of additional logic around? Or, possibly, you know other way to get this info directly from grid?
Completed
Last Updated: 29 Apr 2021 07:30 by ADMIN
Created by: David
Comments: 7
Category: Grid
Type: Feature Request
5
Can you please consider adding a built-in option for freezing Grid rows that will always stay below the headers area during scrolling?
Completed
Last Updated: 13 Jul 2021 06:10 by ADMIN
Currently in the Grid, the GroupHeaderTemplate can create just one cell. I'd prefer to have option to have columns in the group header like it is implemented in the jQuery Grid. Check it here https://demos.telerik.com/kendo-ui/grid/aggregates
This option will be handy for displaying aggregates in a group header.