Completed
Last Updated: 18 Mar 2024 08:43 by ADMIN
Release 2024 Q2 (May)
Created by: Brice
Comments: 1
Category: Grid
Type: Feature Request
20

When using virtual scrolling and grouping features (currently achieved with kendoGridGroupBinding directive), the ability to control the expanded state of the groups is disabled due to limitation.

The available methods are helpfull when you want to control the state of the groups at runtime, but are not compatible with virtual scrolling since the records are loaded on demand.

It would be nice if we had the ability to collapse and expand all groups of the Grid programatically when using virtual scrolling.

In Development
Last Updated: 14 Mar 2024 10:38 by ADMIN
Please provide a feature allowing to set the "role" attribute to cells (TD elements) in a given Grid column.
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: 05 Mar 2024 11:35 by Dimitris
Created by: Dimitris
Comments: 0
Category: Grid
Type: Feature Request
1

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: 28 Feb 2024 08:34 by ADMIN
Created by: John Tobin
Comments: 9
Category: Grid
Type: Feature Request
12
Add ability to create multi-column headers for Kendo Ui for Angular Grid component. We should be able to use a nested array with n levels and the multi-column headers should be created dynamically by the grid.


Unplanned
Last Updated: 26 Feb 2024 12:37 by ADMIN

We need to overwrite kendo-grid-column-chooser component reset button logic. We need reset button to select all columns that were selected during the initial load of grid.instead of current reset logic. Is there a way to overwrite reset button logic?

I tried <kendo-grid-column-chooser (reset)="resetColumnMenu($event)"></kendo-grid-column-chooser> but it didn't work.

Completed
Last Updated: 23 Feb 2024 06:47 by ADMIN
We need copy-pasting data from Excel to Kendo UI for Angular Grid, and it is available in old telerik component for silverlite application
Declined
Last Updated: 06 Feb 2024 00:08 by Sergey
Created by: Arsham
Comments: 5
Category: Grid
Type: Feature Request
31
hello 
i`m always using kendo grid in my project
but i can`t import excel to kendo grid 
please make it possible to import excel file and select specific sheet to kendo grid
Unplanned
Last Updated: 25 Jan 2024 09:36 by ADMIN
Created by: Vanessa
Comments: 1
Category: Grid
Type: Feature Request
1

It would be helpful to have a filter option inside the ColumnChooserComponent.

In some use cases we have around 30-50 items inside the list, it's hard to scroll through the small window to find your entries. 

A simple textbox to search through the entries would be enough.

Unplanned
Last Updated: 18 Jan 2024 20:26 by Augusto
Created by: Richa
Comments: 2
Category: Grid
Type: Feature Request
11

Hi, 

 

There is no event to cater mouse-over events for rows in k-grid. This is important if we need to perform something row specific.

Also, this is not achievable through javascript events. So it should be a feature in Kendo.

 

Thanks!

Richa

Unplanned
Last Updated: 17 Jan 2024 13:01 by Roman
Created by: Roman
Comments: 0
Category: Grid
Type: Feature Request
2

Hi,

It will be a good addition to the CheckboxColumnComponent if you allow developers to disable the checkboxes conditionally.

Workaround adding `k-disabled` class using class and headerClass properties:

https://stackblitz.com/edit/angular-n4gpjp-xqkpjz?file=src%2Fapp%2Fapp.component.ts

 

Unplanned
Last Updated: 12 Jan 2024 15:08 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Grid
Type: Feature Request
3

Hi,

Allow an option to filter when the user presses the enter key for the row filtering. The option can be a part of the StringFilterCellComponent(applicable to the other built-in filter components) and can also be considered for the TreeList component.

Completed
Last Updated: 04 Jan 2024 07:42 by ADMIN
We need to be able to overrride "compare" method in kendo-data-query sort-array.operator.  We are using your processData for client side sorting but need to change the "compare" method since we have decimal values already formatted in our objects.  Since they are formatted they are technically strings and sorted as such.  Currently we had to rip out your processData and call our custom version with a compare method like so:

const compare = (a, b) => {
    if (isBlank(a)) {
        return a === b ? 0 : -1;
    }

    if (isBlank(b)) {
        return 1;
    }

    let a1 = a;
    if (isNumber(a)) {
        a1 = toNumber(a);
    } else if (isDate(a)) {
        a1 = ensureDate(a);
    }

    let b1 = b;
    if (isNumber(b)) {
        b1 = toNumber(b);
    } else if (isDate(b)) {
        b1 = ensureDate(b);
    }

    if (a1.localeCompare) {
        return a1.localeCompare(b1);
    }

    return a1 > b1 ? 1 : (a1 < b1 ? -1 : 0);
};
Unplanned
Last Updated: 25 Dec 2023 09:22 by ADMIN
Created by: Boris
Comments: 1
Category: Grid
Type: Feature Request
1

Hello,

In the documentation it says that sticky columns are not available while using virtual columns. It is really important for us to virtualize columns, when there's a lot of them in the grid, but also being able to use a sticky column at the same time.

Can you please consider implementing sticky columns while virtual columns are also enabled?

Best regards,

Boris

 

 

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

Hi,

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

Unplanned
Last Updated: 16 Nov 2023 13:31 by Padmaja
Created by: Padmaja
Comments: 0
Category: Grid
Type: Feature Request
1

Hi, Team!

I would like to request functionality that would allow the developer to determine whether single or multiple items are expanded at the same time inside the Grid's Column Menu.

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.

Unplanned
Last Updated: 01 Nov 2023 13:58 by ADMIN
Created by: unTill
Comments: 5
Category: Grid
Type: Bug Report
0

When filter popup is opened, it need to be closed by click outside of it

However, popup is closed only after second click outside.

After popup was opened and closed for the first time - next times everything works correctly, so it can be reproduced only after refreshing the page with this component

It can be reproduced in example in your documentation: https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu/#toc-custom-filters/

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: 12 Oct 2023 09:10 by Bundyo
In Grid inline editing right now when we click on  addnew row ,new row is adding as the first row of grid. can we get feature like when we can add new row at specific position in the grid
1 2 3 4 5 6