Hi,
I've just purchased the ASP.Net MVC Kendo UI Grid and I am looking to do the following:-
I have a dataset which in the redacted code below is grouped by RegionalManager like this:-
.DataSource(dataSource => dataSource
.Ajax()
.Group(grp => grp.Add(m => m.RegionalManager ))
.ServerOperation(false)
.Batch(true) // enable batch updates
What I would like to be able to do is somehow add a command at the group level so I could swap the regional manager for an entire grouping.
At the moment, I am only able to add custom commands at the whole grid or row level.
Any help would be much appreciated.
I've just purchased the ASP.Net MVC Kendo UI Grid and I am looking to do the following:-
I have a dataset which in the redacted code below is grouped by RegionalManager like this:-
.DataSource(dataSource => dataSource
.Ajax()
.Group(grp => grp.Add(m => m.RegionalManager ))
.ServerOperation(false)
.Batch(true) // enable batch updates
What I would like to be able to do is somehow add a command at the group level so I could swap the regional manager for an entire grouping.
At the moment, I am only able to add custom commands at the whole grid or row level.
Any help would be much appreciated.