I have set the Columns of the DataGridView to SortMode = DataGridViewColumnSortMode.Automatic; But on the click on the cell header, it does not sort it
Deos anyone know how to do it ?
Your datasource has to be sortable
a DataTable/DataView is sortable
a List is not sortable (by properties) for itself
Have a look here: http://www.codeproject.com/Articles/31418/Implementing-a-Sortable-BindingList-Very-Very-Quic
SortExpressionon the column? - Arion