Declined
Last Updated: 23 Feb 2023 06:21 by ADMIN

Now I can configure possible filter operators and default operator on column basis. Doing so I have much copy-pasted code for each grid column.

I want to have a grid level option to configure this on "type" basis with a reusable js object (e.g. public constant shared across components):

<kendo-grid [filterOptions]="GridFilterOptions" ...

Where GridFilterOptions:

public const GridFilterOptions: ... = [
{ type: "string", default: "contains", operators: ["contains", "doesnotcontain"]},
{ type: "number", default: "eq", operators: ["eq", "neq"]}
];
Declined
Last Updated: 14 Dec 2022 22:19 by John
Created by: Holger
Comments: 13
Category: Grid
Type: Feature Request
18

Current behavior
The grid component already has the functionality to resize and reorder columns by the user, but is missing functionality for saving an restoring columns configuration, so that changes done by the user are lost after a page change.

There is the Persist the State article in the "How to section" in the documentation, but the described solution is only applicable when adding grid columns by using *ngFor. When defining columns in the markup, due to extensive usage of templates (kendoGridColumnMenuTemplate, kendoGridFilterMenuTemplate, kendoGridCellTemplate, ..), there is no reasonable solution available.

Expected behavior
Provide methods, similar to the jQuery grid, to save and restore columns configuration. This should at least include the column's order, width and sort.

 

PS: This is not a duplicate of the feature request Add persistent state for grid (and other components). The latter one has been marked as "Completed" but does not include the needed functionality.

Declined
Last Updated: 01 Dec 2022 11:11 by ADMIN
Please provide an option that prevents the destruction of the detail template when it is expanded and collapsed. That will allow to maintain the state of the detail template. Such functionality would be dependent on the Grid data operations though. Meaning that, even if the detail templates aren't destroyed when collapsed they will be destroyed if the Grid is paged for example.
Declined
Last Updated: 01 Dec 2022 09:18 by ADMIN
Created by: Cédric
Comments: 1
Category: Grid
Type: Feature Request
0
Please provide a built-in rowStyle callback similar to the existing rowClass one. Thank you.
Declined
Last Updated: 17 Nov 2022 08:37 by ADMIN
Created by: Phoenix
Comments: 1
Category: Grid
Type: Feature Request
0
Please provide a means to access the current column (its row and column indexes) through the activeCell.  
Declined
Last Updated: 11 Aug 2022 08:26 by ADMIN
Created by: Alexander
Comments: 2
Category: Grid
Type: Feature Request
1

Add icons for grid filter operators to easily understand current operator (DevExpress example):

https://gyazo.com/3806906633b2c1ca66f6cacc2b32ba88

image

Declined
Last Updated: 16 Jun 2022 09:34 by ADMIN
Created by: YAVEON-RRA
Comments: 2
Category: Grid
Type: Feature Request
0

Setting grid.columns[i].hidden may work to some extend, but isn't emitting columnVisibilityChange and further activities on a column set visible are not working but resulting in error, e.g. calling reorderColumn() results in:

TypeError: Cannot set property 'orderIndex' of undefined
    at GridComponent.push../node_modules/@progress/kendo-angular-grid/dist/fesm5/index.js.GridComponent.updateColumnIndices (https://localhost:4201/vendor.js:196833:43)

The grid internal method updateColumnIndices() throws an error, because it doesn't get the newly visible column from expandColumnsWithSpan() and expandedColumns.indexOf(source) is -1. 

Thus it's required to add methods like showColumn/hideColumn or setColumnVisibilty.

Declined
Last Updated: 16 Jun 2022 08:54 by ADMIN
Created by: Alexander
Comments: 2
Category: Grid
Type: Feature Request
2

Add "between" grid filter row operator similar to DevExpress for angular one.

Example here:

https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/Filtering/Angular/Light/

 

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.
Declined
Last Updated: 02 Aug 2021 10:05 by ADMIN
Created by: Aneesh
Comments: 3
Category: Grid
Type: Feature Request
4
Support for showing and hiding rows in angular grid
Declined
Last Updated: 02 Aug 2021 09:55 by ADMIN
Created by: Ján
Comments: 1
Category: Grid
Type: Feature Request
3
Currently the filterCellTemplate is ignored for commnand column. It would be a handy feature if one could specify also content of filter cell for command column so in case filtering is enabled we could for example provide some suctom additional functionaly/content in that column (for example i wanted to add there a button that would reset all filters)
Declined
Last Updated: 02 Aug 2021 09:40 by ADMIN
The group panel on the grid should be configurable to be hidden
Declined
Last Updated: 29 Jul 2021 14:22 by ADMIN
Created by: Imported User
Comments: 1
Category: Grid
Type: Feature Request
3
Implement "Shift + Arrow Keys  adds the row which holds the focused cell to the selection (only for selection mode "multiple")", explained here (https://demos.telerik.com/kendo-ui/grid/keyboard-navigation)
Declined
Last Updated: 29 Jul 2021 14:17 by ADMIN
Created by: Holger
Comments: 1
Category: Grid
Type: Feature Request
2
Please make the grid selection cancelable.
Declined
Last Updated: 29 Jul 2021 13:57 by ADMIN
Created by: Mohsen
Comments: 1
Category: Grid
Type: Feature Request
5
Just like KendoUI supports offline datasource sync.
Declined
Last Updated: 29 Jul 2021 13:07 by ADMIN
Created by: Imported User
Comments: 2
Category: Grid
Type: Feature Request
10
In a Kendo grid, Angular/MVC/JS/Whatever;
When using multi check filter.
----
Only show those values that are still useful to filter on!!!
---

When filtering is done(one to many columns) - ONLY the remaining options should be seen when setting the NEXT filter (not all possible values in the database) of course distinct and sorted

(the grid could have an option of doing it this way or the old way)
 

example:

let's say we have 5 numbers of categories, each category have 20 different details.

when filtering is set on one category, then when filtering on details - only the 20 remaining details should be seen, not 100(5*20)

and vice verse, if filtering one detail - only one category should be seen when filtering on category.

Declined
Last Updated: 27 Jul 2021 15:15 by ADMIN
Created by: Imported User
Comments: 3
Category: Grid
Type: Feature Request
19
Since column reordering is now avaialble, could you implement a way to set column index as an Input property, so it can be saved and loaded later?
Declined
Last Updated: 27 Jul 2021 12:08 by ADMIN
Created by: Myo
Comments: 1
Category: Grid
Type: Feature Request
5
Hi ,

I would like to vote for this .
Declined
Last Updated: 26 Jul 2021 15:06 by ADMIN
Created by: Musashi
Comments: 2
Category: Grid
Type: Feature Request
4
Scroll position is lost when navigating between routes. A way to set scroll position on the grid would be nice for navigating to a previous route.
Declined
Last Updated: 13 Jul 2021 14:03 by ADMIN
I am honestly quite surprised that this isn't possible... if anyone has a workaround to make this happen it would be much appreciated. All I want to do is make the grid headers go 'Vertically' and have each 'row' become a column.