AD
Administrator
Syncfusion Team
April 6, 2005 10:01 PM UTC
I forgot something:
I''ll get the same view for the user( sort direction in the header row ).
Regards,
Thomas
AD
Administrator
Syncfusion Team
April 6, 2005 10:02 PM UTC
Assuming you are using a DataTable as the DataSource, the simplest way is to get this information is through the DataView associated with the CurrencyManager.
CurrencyManager cm = (CurrencyManager)grid.BindingContext[grid.DataSource, grid.DataMember];
DataView dv = (DataView) cm.List;
//to persist the sort, save dv.Sort
string persistedValue = dv.List;
//to set the sort
dv.Sort = persistedValue;