Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 970 Bytes

File metadata and controls

29 lines (20 loc) · 970 Bytes

Blazor WASM with GridMvcCore back-end (REST API)

Grouping

Index

You can enable grouping for all columns of a grid using the Groupable method for both GridClient and GridServer objects:

  • Client project

        var client = new GridClient<Order>(httpClient, url, query, false, "ordersGrid", Columns, locale)
            .Groupable();
  • Server project

        var server = new GridServer<Order>(repository.GetAll(), Request.Query, true, "ordersGrid", columns, 10)
            .Groupable();

You can drag the column title and drop it on the sorting area. You can add multiple columns at the same time and select if sorting is ascending or descending column by column. The grid items will be grouped by the values of the selected columns.

This is an example of a table of items using grouping:

<- Sorting | Rearrange columns ->