CB
Clay Burch
Syncfusion Team
May 1, 2002 08:03 PM UTC
The default sorting is done through a DataView which requires a DataTable. If you have just set your grid's DataSource to ArrayList, then there is no DataTable and hence no DataTable.
One solution would be to move your ArrayList into a DataTable, and bind that or a DataView based on it to your grid. Then the AllowSorting property of teh TableStyle would probably get you going on sorting.
Clay Burch