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.
I basically need sort one column and then that data get sorted by another column e.g.:
Before Sort
ID Date
3 1/1/2003
1 10/12/2005
1 12/10/2005
2 1/21/2005
After Sort:
ID Date
1 12/10/2005
1 10/12/2005
2 1/21/2005
3 1/1/2003
so we sorted by ID first then date. Any help would be great.
ADAdministrator Syncfusion Team March 2, 2005 12:49 PM
Take a look at the \Syncfusion\Essential Suite\3.0.1.0\Windows\Grid.Windows\Samples\Quick Start\GridControlSort sample.
It shows how you can use a custom comparer to sort a column. In your case, when you sorted the primary column, your custom comparer would check if the sort keys are equal. If so, you would then base the comparision on your secondary key.