Unplanned
Last Updated: 17 Mar 2022 13:09 by Shaik
Created by: Shaik
Comments: 0
Category: Grid
Type: Feature Request
3

Hi,

Please provide an option to use the classic Calendar instead of the Infinity (used by default) when using Grid filtering.

thanks

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: 11 Mar 2024 08:04 by ADMIN
Created by: John
Comments: 3
Category: Grid
Type: Feature Request
3
Provide an option to pass custom popupSettings for the Column menu. This will allow to specify if the Column menu should be opened to the top or to the bottom.
Unplanned
Last Updated: 23 Apr 2019 11:45 by ADMIN
Currently, there is no way to style differently the popup filter menus for two different Grids.
Unplanned
Last Updated: 04 Sep 2019 11:30 by ADMIN
Created by: Leah
Comments: 1
Category: Grid
Type: Feature Request
3
We are using the kendo grid for angular and are programatically showing/hiding grid columns using the "hidden" property of the column.  We would like to animate the grid columns when they show/hide so that the effect is not so jarring for the user.  Our columns are defined in angular templates.  Is there a way to animate this display?  So far I have been unsuccessful with my attempts to use angular animations, and I don't believe regular css animations will work on elements that are added to or removed from the dom.
Unplanned
Last Updated: 30 Nov 2020 10:33 by Chris
Created by: Jerry
Comments: 1
Category: Grid
Type: Feature Request
3

Can you add a method to go to a specific page in the Grid?

It is easy in Kendo UI for jQuery, https://docs.telerik.com/kendo-ui/api/javascript/data/datasource/methods/page

 dataSource.page(2);

The equivalent way of doing it in Kendo UI for Angular is to bind skip to a Grid, and calculate the skip by ourselves, but it doesn't feel as natural as doing datasource.page(2)

Unplanned
Last Updated: 23 Mar 2020 07:36 by ADMIN

As described here:

https://github.com/telerik/kendo-angular/issues/2809#event-3148229980

We are asking to add a simple css class to every master row opened. We have just to change stile every time row has detail open.

Thanks

Unplanned
Last Updated: 07 Jan 2021 07:58 by FISMA-IRM
Created by: Christopher
Comments: 2
Category: Grid
Type: Feature Request
3

Is it possible to modify the default filter for a date on a grid so that it is a "between" filter? i.e. the second clause will show "Is before or equal to" instead of "Is after or equal to"?

 

https://stackblitz.com/edit/angular-ygnmj1

Preferred default:

instead of:

Unplanned
Last Updated: 13 Nov 2020 15:26 by ADMIN
Created by: Karim
Comments: 4
Category: Grid
Type: Feature Request
3

As of right now it is a lot of work to properly implement a foreign key column and some of the features are only working with multiple workarounds. It would be nice to have a foreign key grid column as it already exists for ASP.NET. The ultimate goal would be to set the foreign key field which the column is bound to, pass a list of complex objects and set the text field and value field for that list. 

An example of an hypothetical implementation:

<kendo-grid-column field="ProductId" [data]="ProductList" [valueField]="'Id'" [textField]="'Name'"></kendo-grid-column>

Currently all of this has to be done manually by defining a cell template and edit template which comes with a couple of limitations. The greatest limitation is that the out of the box sorting and filtering does not work since the grid will sort/filter by the Id instead of the cell template value. For the filtering additionally a custom made filter needs to be implemented for each column which displays the DropDown in the filter menu.

For ASP.NET all of these things come out of the box and are extremely helpful. Here is a link to the ASP.NET implementation for a foreign key column: https://demos.telerik.com/aspnet-core/grid/foreignkeycolumn

I wish something like that will be implemented in Angular as well in the near future as it makes the development extremely hard without this feature.
I saw the sorting/filtering together with the foreign key column as one of the main reasons to choose Telerik as it is extremely helpful and setting it apart from its competitors. 

Unplanned
Last Updated: 24 Mar 2024 18:06 by horváth
Created by: GIUSEPPE
Comments: 1
Category: Grid
Type: Feature Request
2

Hi, Team!

I would like to request an enhancement to the built-in drag selection functionality such that the Grid component is automatically scrolled thus allowing the user to reach rows and columns that are rendered on the page but are not currently visible.

Unplanned
Last Updated: 19 Dec 2023 08:55 by Antonio
Created by: Antonio
Comments: 0
Category: Grid
Type: Feature Request
2

Hi,

It will be nice to have a feature to allow the Grid to be exported to Word(DOCX) format.

Unplanned
Last Updated: 20 Oct 2023 07:42 by Fabian
The desired settings are the popupAlign and anchorAlign for positioning purposes like the Popup component.
Unplanned
Last Updated: 05 Oct 2023 12:07 by ADMIN
Created by: Evan
Comments: 1
Category: Grid
Type: Feature Request
2

Hi.  We have a master-detail grid with the detail being a nested grid.
Unfortunately, as the master grid is scrolled, the detail grid header is scrolled out out of view, and the columns look odd because they do not match the master grid header.

Before scrolling:

After scrolling:

We would like to make the master row and detail header sticky.

Thanks.

 

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
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: 18 Apr 2023 17:56 by Kishore
Created by: Kishore
Comments: 0
Category: Grid
Type: Feature Request
2

Highlight the text in the Grid with the filtered text. For example:

Unplanned
Last Updated: 24 Feb 2021 08:56 by ADMIN

Currently when I click the horizontal scrollbar button which is present at the left side or right side of the scroll bar then the columns are scrolled as a regular table.

It will be nice to move from one column to another column instead.

Unplanned
Last Updated: 30 Mar 2021 15:07 by Craigory
Created by: Craigory
Comments: 2
Category: Grid
Type: Feature Request
2

Proposal

CellCloseEvent<T> should provide dataItem: T

 

Why

Currently the CellCloseEvent dataItem is typed as any. This could be the default, but adding a generic type here would allow strong typing in the event handler.

Unplanned
Last Updated: 15 May 2024 10:30 by Mario
Created by: Dimitris
Comments: 1
Category: Grid
Type: Feature Request
2

When I type on a filter, the event filterChange is fired and it correctly contains the data of the column filter that has been modified, with its value.

The problem is that when a filter is cleared (either via clear button or by emptying the filter), the fired filterChange event does not contain any information. No name of the filter field is provided. This doesn't allow me to know which filter has been cleared.

Unplanned
Last Updated: 25 Nov 2021 07:59 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
2

Currently, the Selection feature behaves strangely with the Keyboard Support enabled, see [demo](https://plnkr.co/edit/hTOg7Flx5Fnm63jJ6CgX?p=preview):

* Enter, Ctrl+Enter and Shift+Enter select the rows, but do not function if the cell has focusable components
* Space works only on the checkbox column
* Ctrl+Space, Shift+Space do not work at all

Ideally, the Grid should support the following shortcuts when the Selection and KB Navigation are enabled:

* Select the current row on Space, regardless of the cell content
* Support Ctrl and Shift modifiers for Space

* Shift + Up/Down Arrow for adding/removing the next/last row to the selection.

Similar to the TreeList KB navigation:

https://www.telerik.com/kendo-angular-ui/components/treelist/keyboard-navigation/