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.  
Unplanned
Last Updated: 20 Oct 2022 13:33 by ADMIN

As there are browser-specific limitations to the maximum reliable height/width an HTML element can have (https://stackoverflow.com/questions/34931732/height-limitations-for-browser-vertical-scroll-bar), the virtual scrolling functionality of the Grid is affected (different issues appear depending on the browser).

It would be a nice enhancement to provide a way the virtual scrolling to work regardless of the total number of items in a given use case.

A possible solution is to keep track of a virtual window from 1 to 1,000,000 if the number of source records is greater than 1 million. On a scroll event, the scroll position can then be adjusted to reflect the position within the actual data set. For example, if the scroll position is 300,000 (within the max of 1,000,000) and the source data contains 50,000,000 records, the actual record index to start displaying data is 300000 / 1000000 * 50000000 = 15000000.

Workaround:

The Grid can use virtual scrolling feature with pager.

While the Grid built-in paging and virtual scrolling functionalities are alternatives for rendering the Grid data in portions (pages) they cannot be used together as they both rely on the same pageChange event to process the data.

The developer can introduce some custom implementation based on a custom paging UI placed below the Grid or in the Grid Toolbar template, for example the dedicated stand-alone Pager component.

Here is an example featuring a Grid that has 500k items per page (total 1 million). Each page utilizes virtual scrolling with pageSize=100:

https://stackblitz.com/edit/grid-paged-virtual-scrolling
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.
Unplanned
Last Updated: 24 Aug 2022 21:15 by Nitesh
Created by: Nitesh
Comments: 0
Category: Grid
Type: Feature Request
1
A method to be able to move/reorder the buttons and a template to show the custom content.
Unplanned
Last Updated: 22 Aug 2022 16:36 by Steffen
Created by: Steffen
Comments: 0
Category: Grid
Type: Feature Request
2

Add wildcard filtering in the Kendo UI Grid.

Examples of wildcard characters

Unplanned
Last Updated: 11 Aug 2022 10:17 by Adam
Created by: Adam
Comments: 0
Category: Grid
Type: Feature Request
1

I have a groupable kendo grid. I'm utilizing the kendoGridGroupHeaderColumnTemplate directive.

I see that <kendo-grid-column> takes headerClass and headerStyle, but neither applies styles to the grouped header.

Please provide a groupedHeaderClass and groupHeaderStyle properties so that I can style the cell rendered by kendoGridGroupHeaderColumnTemplate.

Thanks,

-Adam

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

Duplicated
Last Updated: 11 Aug 2022 05:11 by ADMIN
Created by: Mauro
Comments: 4
Category: Grid
Type: Feature Request
3

Can we get an option to set default all collapsed when using the directive?
It seems to be not compatible with the provided methods.

Using the `kendoGridGroupBinding` directive in combination with the `kendoGridExpandGroupBy` directive or the `isGroupExpanded` callback is not supported. To use grouping with the `kendoGridGroupBinding` directive, set the Grid `groupable` property to `true`

Duplicated
Last Updated: 09 Aug 2022 06:15 by ADMIN
Created by: Chandan
Comments: 0
Category: Grid
Type: Feature Request
1

Hi,

Please provide a way to control the grouping operation whether it is performed case sensitive or case insensitive. One option would be to add an ignoreCase property to the GroupDesciptor similar to the FilterDescriptor.

Unplanned
Last Updated: 02 Aug 2022 09:09 by ADMIN

Hi,

I wanted to add the operator "doesnotendwith" and "doesnotstartwith" (present in the FilterOperator enum) in the "OPERATORS" drop-down of the STRING kendo-grid-string-filter-menu column filter.

I don't think there is a component I can add to the markup as explained in the following documentation:

https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu/#toc-order-of-filter-operators

If possible I would like to avoid creating a new custom filter.
It's possible?

Thank you,
B.

Unplanned
Last Updated: 25 Jul 2022 14:31 by Sagar
Created by: Sagar
Comments: 0
Category: Grid
Type: Feature Request
1

When the column filter is set to date, it shows a built-in filter menu with the DatePicker and the operators dropdown. Can we have a similar feature where the filter Menu shows the DateTimePicker with the operators and logic dropdown?

 

Declined
Last Updated: 25 Jul 2022 10:42 by ADMIN
Created by: Simon
Comments: 1
Category: Grid
Type: Bug Report
0

I have being trying to implement the multiple row selection function but am unable to get multiple rows selected at once, even though I have multiple selected mode enabled,Is it possible to archieve this in Kendo ui grid in Angular?

 

Please see my function bellow. event=1 row always even though I select more one row.

<kendo-grid (selectionChange)="getGridSelectedRows($event)"></kendo-grid>

 

public getGridSelectedRows(event) {    
   

if (event.length>0) {

 

     }
       
  }
Unplanned
Last Updated: 25 Jul 2022 09:32 by ADMIN
Created by: Kendo UI
Comments: 1
Category: Grid
Type: Feature Request
2
Please expose a Grid "navigate" event that will allow developers to obtain information about the currently focused Grid row/cell and its corresponding item each time the end user focuses a Grid cell. Currently there are activeRow/Cell fields, but developers cannot hook to the actual changes in the focused Grid item when focus changes through keyboard or pointer.
Duplicated
Last Updated: 13 Jul 2022 07:22 by ADMIN
Created by: Luca
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I'd like to request the Grid to have resize sensors to be able to determine when the Grid height changes. 

Thank you!

Duplicated
Last Updated: 30 Jun 2022 08:53 by ADMIN

Hi, 

I believe it would be a great addition and simplification, if there were getOptions/setOptions methods at GridComponent to imperatively access/restore grid state (visibility, column order, sort order, filter, ...). These are also available at Kendo UI for jQuery. 
I know, all the settings may be set using *ngFor and *ngIf directives, but that approach requires a lot of attribute remapping (from component instance to template) which doesn't feel right, especially when using column templates and and a lot of grid features. 

Thank you, 
Robert

Completed
Last Updated: 30 Jun 2022 06:46 by ADMIN
Created by: Maikel
Comments: 2
Category: Grid
Type: Feature Request
0

When using KendoUI for Angular 2+, the filter value is still enabled and accepts input when "Is null" or "Is empty" is selected.

Since those selections do not require a parameter, I'd prefer the filter value to be default disabled.

 

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/