Unplanned
Last Updated: 12 Aug 2021 14:04 by ADMIN
Created by: balazs
Comments: 0
Category: Grid
Type: Feature Request
4
Since the client side filtering honours ignoreCase and the toOdatastring not, we got a difference in behaviour, so i'd like to report this as a BUG!

With dropdowns I use: &$filter=contains(tolower(FieldName), tolower('" + searchString + "')) but for grid filtering a COLUMN BASED ignoreCase is a MUST!
Unplanned
Last Updated: 29 Jul 2021 13:38 by ADMIN
Created by: Imported User
Comments: 0
Category: Grid
Type: Feature Request
5
It way too complicated to clear the selection programmatically in the grid at the moment. Please add a clearSelection method on the grid instance.
Unplanned
Last Updated: 29 Jul 2021 10:08 by ADMIN
Suggestion: Make the  'select all' checkbox in the grid more intuitive for the user.

When we combine virtuall scrolling and selection via checkboxes for the kendo grid the 'select all' checkbox in the header will only select rows which are already visible / paged in.

This is of course because kendo does not yet now about the not yet paged in rows.
On the other side this behavior is quiet unintuive for the user.
The user does not know about page border and expects the select all checkbox to check all rows.

The desired functionality could be realized by internally differentiating between two selection modes, one where the selected rows are are accessible via api (normal mode) and one where the deselected rows are accessible via api (mode where select all is enabled).

This would increase the user experience. 
Unplanned
Last Updated: 13 Jul 2021 12:17 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
11
When exporting the grid contents as a PDF file, we only have the option to export the current page or all pages. There should also be the option to export specific data, like there is for the Excel Export (https://www.telerik.com/kendo-angular-ui/components/grid/export/excel-export/#toc-exporting-specific-data).
Unplanned
Last Updated: 12 Aug 2021 10:30 by ADMIN
Created by: Marian
Comments: 0
Category: Grid
Type: Feature Request
3
Support TYPE in DataResult (speciallly GridDataResult)


In state you would like to do something like:


export interface SomethingState {
  loading: boolean;
  success: boolean;
  data: GridDataResult<XYZ>
}


it would be State with data: XYZ[].
Unplanned
Last Updated: 06 Feb 2020 12:03 by ADMIN
Current Silverlight Solution has the ability to filter based upon the operators of "Is Contained In" and "Is Not Contained In". When will this be available for the Angular version. This is delaying a move from Silverlight to HTML5 and Angular 4, as our client is dependent upon the existing feature.
Unplanned
Last Updated: 12 Aug 2021 13:51 by ADMIN
The filter descriptors support accessor functions in the "field" option. It would be great to see this implemented in the sort, group, and aggregate options.

const result = process(items, {
    filter: {
        logic: "and",
        filters: [{ field: x => x.getValue(), operator: "eq", value: 0 }], // <- supported
    },
    group: [
        field: x => x.getValue(), // <- not supported
        aggregates: [{ aggregate: "sum", field: x => x.getValue() }] // <- not supported
    ],
    sort: [{ field: x => x.getValue(), dir: "desc" }] // <- not supported
});

Unplanned
Last Updated: 29 Jul 2021 13:35 by ADMIN
Created by: João Vitor
Comments: 0
Category: Grid
Type: Feature Request
41
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
Unplanned
Last Updated: 04 Feb 2019 10:56 by ADMIN
Created by: Jason
Comments: 5
Category: Grid
Type: Feature Request
8
Any plans on creating a Distinct Filter for the grid? 

One like Wijmo has?  https://ibb.co/fo7gwQ
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