I am using Kendo UI Grid to display my results. I am using the asp.net mvc helper extension method to create the Grid with the Custom Binding to implement the paging as explained in the documentation (http://www.kendoui.com/documentation/asp-net-mvc/helpers/grid/custom-binding.aspx). My result data can be grouped into 5 different groups (Group1Id, Group2Id...). I need to group the result using these group Ids. Can anyone tell me how to implement the groupBy. In telerik grid (for the webforms) I used GridGroupByExpression. I would like something that is similar to this behavior. There is
.Group(groups =>
{
groups.Add(p => p.Group1Id);
groups.Add(p => p.Group2Id);
}
it did not work for the custom binding. However, it works for the server binding. I haven't tried the Ajax binding yet.