Grid -Grouping (Client mode)


  • City
CompanyName ContactName ContactTitle City

About this example


This demo shows DJME Grid using Ajax requests for grouping.In this demo using the customers data of Northwind database that generate by EF.

You can use the Groupable Method to support data groupable.The Groupable method has two overload methods .
  • Groupable() - Allows grouping the Grid data.
  • Groupable(Action> groups) - Allows grouping the Grid data and specified which columns need to group

<%
   Ajax.Dna().Grid()
         ...
        .Grouping(groups=>{
          groups.Add(m=>City);
        })
         .Render();
%>