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: 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.
Completed
Last Updated: 14 Nov 2017 07:02 by ADMIN
Created by: Dennis
Comments: 8
Category: Grid
Type: Feature Request
70
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: 27 May 2021 17:43 by ADMIN
Created by: Igor
Comments: 5
Category: Grid
Type: Feature Request
60
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
Unplanned
Last Updated: 29 Jul 2021 13:35 by ADMIN
Created by: João Vitor
Comments: 0
Category: Grid
Type: Feature Request
40
As described here: https://github.com/telerik/kendo-angular/issues/731

The function toODataString not generate the string with the groupby and aggregate.
In order to the groupby funtionality of Grid component to work with OData, this is needed.

Sample (code) available at https://github.com/telerik/kendo-angular/issues/731
Completed
Last Updated: 06 Jun 2023 15:31 by ADMIN
Created by: Loke Moon
Comments: 11
Category: Grid
Type: Feature Request
40
http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/various/drag-and-drop-rows-between-two-grids
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: 21 Sep 2022 12:22 by ADMIN
Created by: Mark
Comments: 10
Category: Grid
Type: Feature Request
38
Would like the ability to programmatically expand or collapse all groups for all rows in the grid.  Without having the need to iterate across all rows.
Completed
Last Updated: 23 Mar 2021 14:42 by ADMIN
When using virtual scrolling and the data changes, then it might be desireable to programmatically scroll to top or to scroll to a row containing the data of interest.
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: 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. 
Unplanned
Last Updated: 03 Aug 2023 09:48 by ADMIN
Created by: Annamalai
Comments: 14
Category: Grid
Type: Feature Request
32

Hi Team,

In continuation of https://www.telerik.com/account/support-tickets/view-ticket/1447763. Requesting a feature to grid rows merge like below example,

Col1Col2Col3Col4Col5Col6
Row1Row1Row1Row1Row1Merge1
Row2Row2Row2Row2Row2
Row3Row3Row3Row3Row3Merge2
Row4Row4Row4Row4Row4
Row5Row5Row5Row5Row5
Row6Row6Row6Row6Row6Merge3
Row7Row7Row7Row7Row7
Row8Row8Row8Row8Row8Merge4
Row9Row9Row9Row9Row9

Thanks!

Completed
Last Updated: 22 May 2018 12:59 by Sambo
Declined
Last Updated: 06 Feb 2024 00:08 by Sergey
Created by: Arsham
Comments: 5
Category: Grid
Type: Feature Request
31
hello 
i`m always using kendo grid in my project
but i can`t import excel to kendo grid 
please make it possible to import excel file and select specific sheet to kendo grid
Declined
Last Updated: 12 Aug 2021 12:35 by ADMIN
Created by: Jonas
Comments: 2
Category: Grid
Type: Feature Request
27
We would like to have the possibilty to create custom implementation of grid columns (or any other control/component). Because we also have this in our WPF projects and it was very useful to minimize the redundant code and also the "initialization code". This can't be done in a simple template, for example we need to inject services and get data etc..

Example:
In our WPF project have lots of different grids with values related to units. The cell can convert this unit to and other unit itself, it can localize the texts, it shows the information in some kind of "progress bar", has a tooltip, etc... And all we have to do in the code is to set a column like this <custom-column valueField="test" unitField="test2" />.

It would be great to have this feature in the Angular 2 grid as well.
Completed
Last Updated: 04 Jan 2024 07:42 by ADMIN
We need to be able to overrride "compare" method in kendo-data-query sort-array.operator.  We are using your processData for client side sorting but need to change the "compare" method since we have decimal values already formatted in our objects.  Since they are formatted they are technically strings and sorted as such.  Currently we had to rip out your processData and call our custom version with a compare method like so:

const compare = (a, b) => {
    if (isBlank(a)) {
        return a === b ? 0 : -1;
    }

    if (isBlank(b)) {
        return 1;
    }

    let a1 = a;
    if (isNumber(a)) {
        a1 = toNumber(a);
    } else if (isDate(a)) {
        a1 = ensureDate(a);
    }

    let b1 = b;
    if (isNumber(b)) {
        b1 = toNumber(b);
    } else if (isDate(b)) {
        b1 = ensureDate(b);
    }

    if (a1.localeCompare) {
        return a1.localeCompare(b1);
    }

    return a1 > b1 ? 1 : (a1 < b1 ? -1 : 0);
};
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. 
Unplanned
Last Updated: 12 Oct 2023 09:10 by Bundyo
In Grid inline editing right now when we click on  addnew row ,new row is adding as the first row of grid. can we get feature like when we can add new row at specific position in the grid
1 2 3 4 5 6