New to Telerik UI for ASP.NET MVC? Download free 30-day trial

Grouping

To request grouped data on initial load, configure the groups in the GroupDescriptorFactory. the ToDataSourceResult() extension method will return only the grouped data in the response object.

  • The Group method sets the initial groups.
    @(Html.Kendo().DataSource<ProductViewModel>()
        .Name("myDataSource")
        .Ajax(datasource => datasource
            .Read(read => read.Action("Products_Read", "Home"))
            .Group(groups =>
            {
                groups.Add(product => product.UnitPrice);
                groups.Add(product => product.ProductName);
            })
        )
    )

See Also

In this article