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 November 29, 2004 11:54 AM UTC
This will take a little coding to get done as the GridListControl has no built-in support for sorting.
You would have to subscribe to the gridListControl1.Grid.CellClick event. In your handler, you would have to sort the values in the DataSource. There is no concept of sorting the grid iteself as teh grid just displays what is in teh DataSource in the order that it is within the datasource. So, to sort things, you would sort the DataSource. If you DataSource is a Datatable, you could use the dataTable.DefaultView.Sort property to sort the column. If it is an ArrayList, you can use the arrayList.Sort method to sort things.
As far as catching the CellClick event and managing the sorting, you can see a sample that does something similar in Grid\Sample\QuickStart\GridControlSort sample. Getting a sort icon in the header will require you to handle the embedded grid''s QueryCellInfo, and set the e.Style.CellType property there.
ADAdministrator Syncfusion Team November 29, 2004 01:08 PM UTC
Hi,
That is something i have done in the past, here''s a sample. It also has a multi sort feature if you hold down the Control key.
Colin
sortgridlist_6814.zip