The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team January 22, 2004 12:48 PM UTC
In the 2.0 GridGroupingControl, yes multicolumn sorting is supported.
In the GridDataBoundGrid, the default sorting only sorts the single column. If you want multicolumn sorting, you would have to handle it yourself. You would turn off the default sorting with the SortBehavior property. Then handle CellDoubleClick and do the sorting there. To sort, you would get the DataView associated with your datasource (likely some dataTable1.DefaultView), and then set its Sort property to sort the columns you want. It is doable. The sample that ships with 1.6.1.8, Syncfusion\Essential Suite\Grid\Samples\DataBound\DataBoundSortByDisplayMember, does something of this nature, changing the default sorting.