Hi,
https://stackblitz.com/edit/react-gmfcy6-5rknaj
In above example I'm using grouping and row selection as well.
Issue is: row selection is not working when grouped. IF you remove grouping `unit in stock` and click on any row it will immediately highlight selected row.
Thanks
Vikram E.

I've category column (contains unique guid) in my data[].
While showing category column in grid, somehow I've managed to show respective category_name instead of category_id at clientside.
I'm using GridColumnMenuCheckboxFilter to show checkbox filter with all possible filterable values.
But all checkboxes in category filter popup shows category_id (which is default behavior), this is not readable to user.
Can I change labels of checkboxes in category filter popup from category (i.e category_id) to category_name.

Hi.
I am trying to implement a detail row in my grid, as shown in this example:
https://www.telerik.com/kendo-react-ui/components/grid/rows/detail/
It works great, but how can I make this editable as well? I need to be able to edit all columns, details as well.
Is this possible? whatever I tried didn't work for me.
Thanks!

Hi,
I'm working on a Kendo React Grid in my application and I'm trying to figure out how to navigate each 'td' (cell) of the grid using tab key. I was able to navigate where i have buttons rendered in a cell (using cell option).
I have followed below example which uses rowRender but it was selecting whole row.
https://stackblitz.com/edit/react-njk8q2-qlvomy?file=app/main.jsx
Is there a way to navigate to each cell of the grid when using tab key?
'kendo' is not defined no-undef
Hello I encounter this error when using the pivot grid using the sample code below
import React from 'react';
import ReactDOM from 'react-dom';
import $ from 'jquery';
import '@progress/kendo-ui';
import { PivotGrid, PivotGridConfigurator } from '@progress/kendo-pivotgrid-react-wrapper';
class PivotGridContainer extends React.Component {
constructor(props) {
super(props);
this.dataSource = new kendo.data.PivotDataSource({
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Product].[Category]" }],
rows: [{ name: "[Geography].[City]" }],
measures: ["[Measures].[Reseller Freight Cost]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: "https://demos.telerik.com/olap/msmdpump.dll"
},
schema: {
type: "xmla"
},
error: function (e) {
alert("error: " + kendo.stringify(e.errors[0]));
}
});
}
render() {
return (
<div>
<PivotGridConfigurator dataSource={this.dataSource}
filterable={true}
sortable={true}
height={300}>
</PivotGridConfigurator>
<PivotGrid dataSource={this.dataSource}
filterable={true}
sortable={true}
height={550}
columnWidth={200}>
</PivotGrid>
</div>
);
}
}
ReactDOM.render(<PivotGridContainer />, document.querySelector('my-app'));


Hi,
On most examples on telerik site there is a menu to switch between themes but I didn't managed to find some examples on how to actually implement it?
Any help ?
Thanks,
Arnaud.
Do we have any sample or blog for using KendoReact with Recoil.js? I already found one blog post but it never shows the using it with any KendoReact.
https://www.telerik.com/blogs/recoil-in-react
Hi all
probably I'm doing something completely wrong :-) I try to put a custom date format on one of my Grid columns, with the following
<GridColumn field='Updated' filter={'date'} format="{0: yyyy-MM-dd HH:mm:ss}" width={'120px'}/>
No matter what format I'm trying to put into the spec, the date always shows in my browser locale, e.g. Is there something else I must configure?