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.

Completed
Last Updated: 20 Mar 2024 09:31 by ADMIN
Please provide a feature allowing to set the "role" attribute to cells (TD elements) in a given Grid column.
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: 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: 20 Jun 2024 10:59 by Ankit
Created by: Ankit
Comments: 0
Category: Grid
Type: Feature Request
2

Hi, Team!

Currently, the built-in row reordering feature is not compatible with the grouping feature of the Grid component. Therefore, I would like to request a feature where the drag and drop of records inside a single group or across multiple groups is possible.

A possible workaround that requires additional logic for the full implementation of the logic:

https://stackblitz.com/edit/angular-y4arlg-ze1bhb

Unplanned
Last Updated: 31 Jul 2024 08:53 by Kendo UI

This will allow developers to target a specific element where they want to render the popups, similar to the Grid POPUP_CONTAINER. This will help render the popup at Grid container level which will display then inside the FullScreen API.

This is regarding the row and column reordering as they append to the body.

Similar to the HintSettings appendTo property:

https://www.telerik.com/kendo-angular-ui/components/utils/api/HintSettings/

Unplanned
Last Updated: 12 Aug 2024 11:50 by Kendo UI

Currently, when using the kendoGridInCellEditing directive of the Grid, the cell enters edit mode with a single mouse click. The only approach for modifying the default behavior is by manually implementing the editing functionality and handling the HTML dblclick event, as demonstrated in the following article:

Please provide an option that enables specifying whether the in-cell editing is activated upon a single or double click when using the kendoGridInCellEditing directive. 

Unplanned
Last Updated: 30 Sep 2024 10:34 by Kendo UI

The current FilterService does not handle nested composite filter descriptors, ignoring them and only processing individual filter descriptors. This limits functionality, especially for complex filtering scenarios. The request is to enhance FilterService to fully support and process nested composite filter descriptors.

Look at the notes for use cases.

Declined
Last Updated: 22 Jun 2021 14:17 by ADMIN
Created by: Shabih
Comments: 1
Category: Grid
Type: Feature Request
1
Hi , Can we have autocomplete feature in a Kendo GRID for angular so that when a user clicks on edit button to edit fields of a row ,the auto complete feature can be triggered on individual fields , also if this feature exists can some one please let me know about it . I couldn't find it in kendo grid documentation.
Completed
Last Updated: 24 Apr 2017 15:14 by ADMIN
Angular 2 - type script 
Completed
Last Updated: 07 Mar 2017 08:32 by ADMIN
x
Created by: James
Comments: 1
Category: Grid
Type: Feature Request
1
x
provide main.js so I don't get kendo-angular-grid/dist/npm/js/main.js 404. Now how to get that file? Right no information anywhere.
At least primeng works so I can use that grid instead.
Completed
Last Updated: 15 Jun 2021 15:22 by ADMIN
I've created a Plunker: http://plnkr.co/edit/WoqkaDZpq8hU24m0eKcv?p=preview

Show the detail template of Row 1 in Beverages, then collapse the Beverages group. the Detail for Chai does not go away with the rest of the table.
Declined
Last Updated: 16 Jun 2021 13:38 by ADMIN
Created by: Emanuele
Comments: 1
Category: Grid
Type: Feature Request
1
When user empty the filter field relative filter state must be spliced and not -> fieldfilter filtteraction emptystring and relative clear button disappear. If someone want to filter based emptystring there is specific action (isempty or notisempty) so no need to send to remote server a request with a value empty and make user confused about filters in action.
Declined
Last Updated: 16 Jun 2021 13:37 by ADMIN
Created by: kishore
Comments: 1
Category: Grid
Type: Feature Request
1
Grid should allow multiple rows to add dynamically
Completed
Last Updated: 18 Jan 2018 17:49 by ADMIN
Created by: Alain
Comments: 1
Category: Grid
Type: Feature Request
1
Declined
Last Updated: 16 Jun 2021 13:41 by ADMIN
Created by: Trevor
Comments: 1
Category: Grid
Type: Feature Request
1
The grid needs a ton of work.  It just looks bad, the API is poor (having to do weird css selects just to find a selected row for example). 
Completed
Last Updated: 16 Jun 2021 13:43 by ADMIN
Created by: Dennie
Comments: 1
Category: Grid
Type: Feature Request
1
When mouse hover over a specific row, a tooltip to show more information should be shown
Declined
Last Updated: 16 Jun 2021 13:43 by ADMIN
When having multiselect in kendo grid and clicking on a row you now deselect all the other choices unless you hold shift or control. It would be nice to have a parameter to either have "advanced" or "simple" select, so you have the option to click a row to select/deselect it only affects the clicked row and not the whole table.
Completed
Last Updated: 17 Jul 2018 15:42 by ADMIN
At current, if one wants to, (for example), highlight the entirety of a row, the natural choice would be to associate a background color with that row.  However, currently, this is not possible.  The closest we can come is to conditionally associate a given color with a div that happens to live in that cell, e.g.: 

<kendo-grid [data]="gridData" [height]="410">
            <kendo-grid-column field="ProductID" title="ID" width="40">
            </kendo-grid-column>
            <kendo-grid-column field="ProductName" title="Name" width="250">
            </kendo-grid-column>
            <kendo-grid-column field="Category.CategoryName" title="Category">
            </kendo-grid-column>
            <kendo-grid-column field="UnitPrice" title="Price" width="80">
              <ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
               <div [class.myClass2]="dataItem.UnitPrice >= 20">{{dataItem.UnitPrice}}</div>
              </ng-template>
            </kendo-grid-column>
            <kendo-grid-column field="UnitsInStock" title="In stock" width="80">
            </kendo-grid-column>
            <kendo-grid-column field="Discontinued" title="Discontinued" width="120">
                <ng-template kendoGridCellTemplate let-dataItem>
                    <input type="checkbox" [checked]="dataItem.Discontinued" disabled/>
                </ng-template>
            </kendo-grid-column>
        </kendo-grid>

(where the class.myClass2 is defined as follows):

styles: [`
    .k-grid td {
      position: relative;
    }
      .myClass2 {
        background-color: rgba(255, 0, 0, 0.5);
        color: white;
        padding: 8px 12px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
      }
    `]

But this doesn't reliably highlight a predictable amount of the cell, especially across browsers.

Thanks for your consideration,
  Jeff
Declined
Last Updated: 16 Jun 2021 13:44 by ADMIN
Created by: Sander
Comments: 2
Category: Grid
Type: Feature Request
1
When editing a row focus on the clicked column/cell directly instead of always focus on the first column. When the grid has many columns this gives unwanted user experience because of the automatic horizontal scrolling. With the new cellClick event the clicked column index is already available.