AD
Administrator
Syncfusion Team
December 6, 2004 01:09 PM UTC
If I understand what you want, you may be able to do this now using a custom comparer for your col. Say, you want to group on Col1, but sort on some other criteria. Then using code like this would let you sort using anbitrary IComparer object.
SortColumnDescriptor sd = new SortColumnDescriptor("Col1");
sd.Comparer = new MyComparer(); //IComparer object
this.gridGroupingControl1.TableDescriptor.GroupedColumns.Add(sd);