vote up 0 vote down star

Hello! I have a datagridview with a number of columns, one of these is a datetime column. I want to display the rows from most recent downwards. e.g. Today Yesterday The Day Before Yesterday etc.

Is it possible to do this with the datagridview? The gridviews datasource is an xmldocument.......

help appreciated greatly.

Regards,

flag

51% accept rate

3 Answers

vote up 1 vote down
 this.dataGridView1.Sort(dataGridView1.Columns["DateTime"], ListSortDirection.Ascending);
link|flag
vote up 0 vote down

What is your datasource? You have to have a datasource that supports sorting.

e.g. a DataTable.

If you have a List you can't sort by default. In theory you need your on class that inherits from BindingList and implements IBindingList (inheritance from BindingList is not nessacary, but makes it a bit easier).

If your BingingList is bound to the DataGridView you can sort.

link|flag
vote up 0 vote down

As far as I know, sorting is not supported for XML data sources. I think your best approach will be to first load the XmlDocument into a dataset and bind that to the grid.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.