Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With ListView controls, you can specify a column to sort by, and there's a method to sort() whenever you want.

However, this only allows for single column sorting.

I'm keen to sort by say, Column A first, and then by Column F for when they are the same.

I've found a few custom compare classes written online, but wondered if stackoverflow could show a cleaner way. Plus having this here may help others looking for it in future :)

Any suggestions or examples on how to go about this appreciated.

share|improve this question
1  
are you populating this listview via a query? maybe you could save the sort criteria in a hidden field and then just order by that criteria in your query. – jim Oct 22 '09 at 11:57
Unfortunately no. The data goes into the listview partially populated, and then as more info about the items is known, the listview is updated - requiring resorting while in the listview as these come in... – Mark Mayo Oct 22 '09 at 13:06

4 Answers

up vote 5 down vote accepted

So, after playing around, the answer I came up with was to write a ListViewItemComparer class through the IComparer interface.

I then overwrote the Compare() method, and could now return -1, 0, or 1 depending on the comparison between first the primary column, and then when equal, the secondary column.

Quite tidy in the end, I think.

share|improve this answer

As with almost all tasks, ObjectListView (an open source wrapper around .NET WinForms ListView) makes living with a ListView much easier.

ObjectListView has SecondarySortColumn and SecondarySortOrder properties to do exactly what you are asking.

If you want to do even fancier sorting, you can install a CustomSorter. Have a look at this recipe

share|improve this answer

Is this on the web or winform? On the web you can put together an expression that has the columns, comma separated, and pass it to the sort() method of the listview

Framework 3.5 and up though...

share|improve this answer
Windows Form, thanks though – Mark Mayo Oct 22 '09 at 12:22

Well, if you just want the columns to be sorted, try using List of List; for instance like following:

List<List<string>> lstColumns = new List<List<string>>();

Haven't tried it, but just thinking a quick solution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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