I was able to do the following using kendo-ui-recat-wrapper to get a grouped Grid :
let dataSource = {
data: data,
schema: {
model: {
id: 'id',
expanded: true
}
},
group: [
{
field: 'title', // GroupBy goes on this field
dir: 'asc'
} ] }
And Then I can pass this to the dataSource props of Grid.
I updated to kendo-react-grid it seems more coherent to use in a ReactJs project than the jquery wrapper.
But I didn't find how to get the same result ? There is no mention to the group option. Even here in DataState (link here) I didn't get how to use it ?!
EDIT : The option is not ready yet (Kendo ui React roadmap)