We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Sorting a grid

Hi I am using a databound grid.On some event I want to sort the grid by one column in ascending order only. I dont know which way the grid is sorted now. If I call gridDataBoundGrid1.SortColumn(11); and grid is already sorted in ascening order by column 11 it gets sorted in descending order. Is there any other way?

1 Reply

AD Administrator Syncfusion Team August 10, 2004 03:59 PM UTC

You can use the CurrencyManager and sort its List property directly. CurrencyManager cm = (CurrencyManager)this.BindingContext[this.grid.DataSource, this.Grid.DataMember]; DataView dv = cm.List as DataView; dv.Sort = "Column11Name ASC";

Loader.
Up arrow icon