Completed
Last Updated: 13 Nov 2019 16:18 by ADMIN
Created by: Kevat
Comments: 1
Category: Grid
Type: Feature Request
2
If the value "-1" is passed in as one of the values in pageSizes input for the PagerPageSizesComponent, that option should be shown as "All" and should show all rows available for the grid.
Completed
Last Updated: 11 Jan 2019 16:08 by ADMIN
Created by: Vincent
Comments: 4
Category: Grid
Type: Feature Request
69
Scrolling like this : http://legacy.datatables.net/release-datatables/examples/basic_init/scroll_y_infinite.html

Say you have 100.000+ rows of data.
With classic or virtual scrolling, you allow your user to go to the last page very easily. It ends up with huge skip parameter, and disastrous load times from the DB.

You don't want users to be able to run queries which are at the same time useless and very time-consuming server-side.

What you really want is for your user to be able to browse a bit of the data with fast queries, and if he wants something else, he should filter data.

Infinite scrolling gives him just that feeling.
Completed
Last Updated: 13 Sep 2018 21:25 by ADMIN
Created by: Imported User
Comments: 2
Category: Grid
Type: Feature Request
38
It would be great if grid component has option to filter date and numeric columns by range.
Completed
Last Updated: 17 Jul 2018 15:42 by ADMIN
At current, if one wants to, (for example), highlight the entirety of a row, the natural choice would be to associate a background color with that row.  However, currently, this is not possible.  The closest we can come is to conditionally associate a given color with a div that happens to live in that cell, e.g.: 

<kendo-grid [data]="gridData" [height]="410">
            <kendo-grid-column field="ProductID" title="ID" width="40">
            </kendo-grid-column>
            <kendo-grid-column field="ProductName" title="Name" width="250">
            </kendo-grid-column>
            <kendo-grid-column field="Category.CategoryName" title="Category">
            </kendo-grid-column>
            <kendo-grid-column field="UnitPrice" title="Price" width="80">
              <ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
               <div [class.myClass2]="dataItem.UnitPrice >= 20">{{dataItem.UnitPrice}}</div>
              </ng-template>
            </kendo-grid-column>
            <kendo-grid-column field="UnitsInStock" title="In stock" width="80">
            </kendo-grid-column>
            <kendo-grid-column field="Discontinued" title="Discontinued" width="120">
                <ng-template kendoGridCellTemplate let-dataItem>
                    <input type="checkbox" [checked]="dataItem.Discontinued" disabled/>
                </ng-template>
            </kendo-grid-column>
        </kendo-grid>

(where the class.myClass2 is defined as follows):

styles: [`
    .k-grid td {
      position: relative;
    }
      .myClass2 {
        background-color: rgba(255, 0, 0, 0.5);
        color: white;
        padding: 8px 12px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
      }
    `]

But this doesn't reliably highlight a predictable amount of the cell, especially across browsers.

Thanks for your consideration,
  Jeff
Completed
Last Updated: 17 Jul 2018 15:16 by ADMIN
Currently it seems that the columns widths are just divided up between the available width and the number of columns. Under that circumstance I am unable to specify a smaller width for a column. I would like for the column to adjust to the title at a minimum. Also it would be nice if we could drag the columns widths bigger or smaller.
Completed
Last Updated: 14 Jun 2018 17:09 by ADMIN
Created by: Iqbal
Comments: 1
Category: Grid
Type: Feature Request
4
Please add grid spinner configuration on grid, example <kendo-grid [loading]="true"></kendo-grid>
Completed
Last Updated: 22 May 2018 12:59 by Sambo
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: 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: 19 Jan 2018 06:13 by Adit
Created by: Melih
Comments: 12
Category: Grid
Type: Feature Request
55
Need the ability to reorder columns and access the current configuration to store and load on next time user access the site.

Already exists on other products on the market and Kendo Grid for jQuery

http://demos.telerik.com/kendo-ui/grid/column-reordering
Completed
Last Updated: 18 Jan 2018 17:49 by ADMIN
Created by: Alain
Comments: 1
Category: Grid
Type: Feature Request
1
Completed
Last Updated: 18 Jan 2018 17:41 by ADMIN
Created by: Senthilkumar
Comments: 1
Category: Grid
Type: Feature Request
1
Need to have Parent --> Child hierarchical records to be displayed in Grid..
It should support up to 'n' level , it means a parent can have any number of child records. can this be done using current Master Detail grids?.

 Parent 1
   --- Child 1
        -- Grand Child 1
            -- Grand Child 1
        -- Grand Child 2


Thanks in advance.
Completed
Last Updated: 18 Jan 2018 17:38 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
2
Drag and Drop of grid's columns the same way we have on the jquery version (with a Input on the component saying if we want columns to be draggable)
Completed
Last Updated: 18 Jan 2018 17:32 by ADMIN
Created by: mina
Comments: 6
Category: Grid
Type: Feature Request
33
Any Plans for making grid or listview rows to be draggable
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: 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: 14 Nov 2017 07:02 by ADMIN
Created by: Dennis
Comments: 8
Category: Grid
Type: Feature Request
70
Completed
Last Updated: 13 Nov 2017 20:14 by ADMIN
Created by: N M Reddy
Comments: 4
Category: Grid
Type: Feature Request
32
In Grid set Filter next Grid Column (http://demos.telerik.com/kendo-ui/grid/filter-menu-customization) like normal Kendo Grid Filter. 
Completed
Last Updated: 26 Sep 2017 20:33 by ADMIN
Created by: Myo
Comments: 1
Category: Grid
Type: Feature Request
23
Like kendo ui jquery. 
Completed
Last Updated: 31 Aug 2017 11:50 by ADMIN
Created by: Imported User
Comments: 16
Category: Grid
Type: Feature Request
116
At the moment, the selected row is not cleared when the data changes (or we change the page). There is no way to clear the selection in the grid, which would be useful when 1 data from a grid depends on the selection from the parent grid.
Having an API to change the selected row, would help.