Unplanned
Last Updated: 11 Sep 2024 11:19 by Sunil
I want to use a property that can format the CheckBoxList ColumnMenu label. It should work the same as the format prop of the GridColumn.
Unplanned
Last Updated: 11 Oct 2024 06:53 by Youniss
I would like to customize the labels of the CheckBoxList FilterMenu without having to manipulate my data. 
Unplanned
Last Updated: 27 Jul 2023 09:23 by ADMIN
Created by: Tatsuro
Comments: 3
Category: Data Grid
Type: Feature Request
0

Hi,

I would like to have 'isnullorempty' filter for text field on Data Grid. There are 'isnull' and 'isempty' filters but it is not straightforward for non-engineer guys. If we have 'isnullorempty' filter, I think it is very useful. 

Other option, is there any way to customize filter operator by myself so that we can have any filter operation?  

 

Thank you,

Tatsuro Matsumoto.

Unplanned
Last Updated: 28 Mar 2023 09:55 by ADMIN
Created by: Janki
Comments: 1
Category: Data Grid
Type: Feature Request
0
When a page break occurs, repeat the grouped header row so the user has context which grouping they're looking at on a new page. Also, ideally, prevent the group header row from being the last row on the page before a page break.
Unplanned
Last Updated: 25 Apr 2023 12:49 by ADMIN

We are using Kendoreact Data Grid with server side paging, sorting and filtering. 

Due to server side nature of those operations DataGrid re-renders bringing the scrollbar position to 0,0 position. 

Any div scrollbar position can be saved :


    const scrollEvent = (event) => {
        sessionStorage.setItem("facets_scrollY",event.target.scrollTop);
    }


and restored using reference an scrollTop/scrollLeft properties.

  ref.current.scrollTop = <value to set>
  ref.current.scrollLeft = <value to set>

Please provide this standard feature to be available on Kendo Data grid as well. 

 

Thank you

Unplanned
Last Updated: 17 May 2023 13:10 by ADMIN
Created by: Kristiyan
Comments: 1
Category: Data Grid
Type: Bug Report
0

Hello,

 

Seems the link to the GridColumnMenu accessibility page from the DataGrid accessibility page is broken. 

Our tools are also warning us about empty links, caused by the GridColumnMenu button. How would we solve these?

Thank you,

Kristiyan Dimitrov

 

Unplanned
Last Updated: 14 Jul 2023 07:09 by ADMIN
Created by: Valery
Comments: 1
Category: Data Grid
Type: Bug Report
0

The issue can be seen on your demo at https://www.telerik.com/kendo-react-ui/components/grid/

Steps: 

1) Load the demo from https://www.telerik.com/kendo-react-ui/components/grid/

2) Click on (x) in customerID grouping 

3) Look at the console and see the line with exception: 

The problem is that `e.originalEvent.target` is an svg object and it's className property is an object, not a string. The object is `SVGAnimatedString {baseVal: '', animVal: ''}` and it doesn't have the method indexOf.

 

Please fix asap.

 

 

 

 

Unplanned
Last Updated: 02 Oct 2023 07:14 by ADMIN

I have one column that contains mix of boolean and string values. When I attempt to apply a filter function to that column, it generates an error for the boolean value true because indexOf cannot be performed on a boolean. When I have other formats along with strings and I use filter="text", I would like the value to be converted to string in the filter function rather than modifying the data on my end before calling the filter function, because that would actually be incorrect data.

Example

https://www.telerik.com/kendo-react-ui/components/grid/filtering/

If I change

<Column field="Discontinued" width="190px" filter="boolean" /> 

to

<Column field="Discontinued" width="190px" />

and then search for anything in that filter it throws error.

 

 

Maybe if you make the `filter="text"` always convert the all the values to string values that would help resolve the error

Unplanned
Last Updated: 27 May 2024 08:42 by ADMIN
Created by: Andy
Comments: 1
Category: Data Grid
Type: Feature Request
0

As a follow on to this bug:

Steps to reproduce:

  • The "General Info" column has width setted to 500px

See Image 1.png

  • resize it in the grid to make wider

See Image 2.png

  • lock the "General Info" column
  • scroll horizontaly

 

I am requesting a new feature so that "that the locked prop is passed by default to the child columns"

 

1 2