vote up 0 vote down star

Hi Guys,

I have a dropdown in which we add certain items after the dropdown is bound by data from the db, hence the need to sort the dropdown arises. So i need to sort a dropdown which can have duplicates. What is the best way of doing this?

flag

58% accept rate
what is your datasource type? DataReader, List, Dictionary, Array? – balexandre May 5 at 6:44
the datasource is a List – renegadeMind May 5 at 9:04

2 Answers

vote up 2 vote down

Instead of adding items directly to the Dropdown, I would suggest adding them to the data structure that you bind to. If the items in this structure implement IComparable, then you can define a comparison method to apply sorting before the Dropdown is actually bound to the data source.

link|flag
vote up 1 vote down

Assuming you are binding to a Generic List you can try something like this :

    var ddlFoo = new List<foo>();
    foreach (var lc in myDropDownList.Items)
    {
        ddlFoo.Add((foo)lc);
    }
    myDropDownList.DataSource = ddlFoo.OrderBy(dl => dl.fooID);
    myDropDownList.Databind();
link|flag

Your Answer

Get an OpenID
or

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