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.
Unplanned
Last Updated: 23 Feb 2023 11:12 by ADMIN
Created by: Luca
Comments: 1
Category: Grid
Type: Feature Request
2

Hi Team,

I would like to request a new event for the Kendo UI Grid which will determine when the Grid has been resized in height.  Right now, I have created a custom directive which uses the changeNotification property to handle when the scrollbar is shown.  But it would be nice if there was something built in.

Thanks!

Unplanned
Last Updated: 03 Jun 2022 08:15 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
2
Currently the data of the Kendo UI for Angular Grid does not allow binding to a ReadonlyArray. Ideally, the data should accept immutable types.
Unplanned
Last Updated: 12 Apr 2022 11:09 by Dawid

Hi team,

It will be a good addition if there was an option for a different drag selection similar to the Excel cell selection. For example, check the attached gif.

Thank you for your consideration.

 

Unplanned
Last Updated: 01 Dec 2021 07:37 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
2

Hi,

It will be an excellent enhancement to the Grid component if cell mouse enter/leave events are added, providing the dataItem(other information like rowIndex and columnIndex might also be useful) on the current hovered cell.

Thank you for your consideration.

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/

 

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: 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: 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?

 

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

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: 15 Apr 2022 13:02 by Pivak
Created by: Pivak
Comments: 0
Category: Grid
Type: Feature Request
1

Hi,

Please provide an option that allows disabling the Clear button located in the Grid filter menu. Currently, it is always enabled, but I expect that it should be enabled only when there is a filter applied for the specific column that can be cleared. The required behavior is similar to the way the Filter button in the filter menu is functioning.

thanks

Unplanned
Last Updated: 27 Jan 2023 12:29 by Nervia Consultores S.L.
Created by: Nervia Consultores S.L.
Comments: 0
Category: Grid
Type: Feature Request
1
Allow customizing the options in each operators dropdown separately when utilizing one of the built-in filter menu components with extra=true.
Unplanned
Last Updated: 17 Mar 2022 08:27 by ADMIN
Created by: Kendo UI
Comments: 2
Category: Grid
Type: Feature Request
1

As the FilterInputWrapperComponents set currentOperator(value: string) uses a hard coded list of operator values (isnull isempty isnotnull isnotemty), it is impossible to create a custom FilterOperator that has no search string - so we can't have isnullorempty isnotnullorempty (or isblank/isnotblank).

Please introduce a requiresSearchValue on the FilterOperatorBase class and make sure FilterInputWrapperComponents does decisions based on that.

Please introduce a isnullorempty/isnotnullorempty filter operator (for strings).

Additional context/sample usage:


 <kendo-grid-column title="Employee / Prospect" field="Name" width="160">
            <ng-template kendoGridCellTemplate let-field let-value let-dataItem>
                <span *ngIf="dataItem.IsProspect" class="pull-left">{{dataItem.Name}}
                    <p class="prospect-indicator pull-right" data-letters="P"></p>
                </span>
                <span *ngIf="!dataItem.IsProspect">{{dataItem.Name}}</span>
            </ng-template>
            <ng-template kendoGridHeaderTemplate let-column>
                <span title={{column.title}}>{{column.title}}</span>
            </ng-template>
            <ng-template kendoGridFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
                <kendo-grid-string-filter-menu
                    [column]="column"
                    [filter]="filter"
                    [filterService]="filterService">
                    <kendo-filter-eq-operator></kendo-filter-eq-operator>
                    <kendo-filter-neq-operator></kendo-filter-neq-operator>
                    <kendo-filter-contains-operator></kendo-filter-contains-operator>
                    <kendo-filter-not-contains-operator></kendo-filter-not-contains-operator>
                    <kendo-filter-startswith-operator></kendo-filter-startswith-operator>
                    <kendo-filter-endswith-operator></kendo-filter-endswith-operator>
                    <kendo-filter-isblank-operator></kendo-filter-isblank-operator>
                    <kendo-filter-isnotblank-operator></kendo-filter-isnotblank-operator>
                    <kendo-filter-isempty-operator text="xIs blank"></kendo-filter-isempty-operator>
                    <kendo-filter-isnotempty-operator text="xIs not blank"></kendo-filter-isnotempty-operator>
                </kendo-grid-string-filter-menu>
            </ng-template>
        </kendo-grid-column>

Unplanned
Last Updated: 30 Jun 2023 20:49 by ferris
Created by: ferris
Comments: 0
Category: Grid
Type: Feature Request
1
Like the Pager component, add the pageSizeChange event for the Grid Pager as well.
Unplanned
Last Updated: 28 Aug 2023 20:59 by Le-Or
It would be nice if you supported specific row selection based on user-defined conditions, without disabling the entire row. The goal is to eliminate the need for additional customization required to handle multi selection behavior on the user's end.

Implementing this functionality would greatly benefit applications that heavily rely on grid usage. Currently, each usage of the grid component requires a custom implementation to override default behavior.
Unplanned
Last Updated: 30 Nov 2021 12:07 by ADMIN
Currently, the Grid always uses tab index 0 for the focusable element(s). Introducing a "tabindex" option would allow setting a custom tabindex on both the Grid element and all internal focusable elements so that the Grid can be a part of customized tab order on the page.
Unplanned
Last Updated: 25 Nov 2021 08:24 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
1

Current behavior

The developer must measure the Grid row height in the browser and set it to the `rowHeight` in order for virtual scrolling to work correctly. Setting an incorrect value can lead to subtle errors - glitches during scrolling or inability to scroll down to the last row.

The row height may change as a result of a styling adjustments and is not guaranteed to be identical across browsers and devices. This makes the current workflow tedious and error-prone.

One of the following approaches can be used to solve this issue:

  • The Grid should take accurate measurements of the row height at run-time. The developer should still be aware that row height is constant . This is the preferred approach as it does not change current behavior, instead the set `rowHeight` value is ignored.
  • The set `rowHeight` should be applied as inline styles. This is a more risky approach as it will change the appearance of the Grid.
Unplanned
Last Updated: 25 Nov 2021 07:59 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
1

Overcoming the last listed limitation would be nice:

https://www.telerik.com/kendo-angular-ui-develop/components/grid/columns/locked/#toc-known-limitations

 

The Spreadsheet (Google Docs, etc.) addresses this situation by duplicating the cell content on both sides and clipping the right cell accordingly.

A similar approach can be used and providing a setting that disables word-wrapping and duplicates the content.
Unplanned
Last Updated: 08 Nov 2023 09:17 by Latha
Created by: Latha
Comments: 0
Category: Grid
Type: Feature Request
1

Currently, we can specify which columns to be included in the exported PDF file or Excel file:

https://www.telerik.com/kendo-angular-ui/components/grid/export/pdf-export/#toc-customizing-exported-columns

It would be also convenient to have a property such as excludeFromPDF (or similar) for scenarios when only a single column should be removed from the PDF file.

Right now this is possible but defining the rest of the columns between <kendo-grid-pdf> tags which in scenarios with more columns drastically increases the HTML template.