I have some legacy hand rolled T-SQL that I am now displaying in the Kendo MVC Grid. It can handle paging/sorting but not server grouping. I have most of it working but would like to know how to do a few things.
- How can I use server paging/sorting and use local grouping. I can do it client side but not using the Razor helpers. (no option to turn off just 1 option) I figured out how to do it in JS post render but not ideal. ($("#grid").data("kendoGrid").dataSource.options.serverGrouping = false;)
- There does not seem to be a columnGrouped event? Every time I group a column I would like to set it as the First sorted column and hide the column from display. Then refresh the grid back to page 1 and have the client side group up results (which should be similar to server grouping). All of the example I have seen are using the "Databound" event but that seems to late in the callstack to be forcing a different search/ui change. I suppose I could try overriding the parameter list?