SortedList<string, MyObject> myObjects = new SortedList<string, MyObject>();
foreach (SecondObjectType secondObjectType in Repository<SecondObjectType>
            .FindAll(Where.SecondObjectType.Company.Id == companyId &&
                     Where.SecondObjectType.Active == 1))
{
    if (!MyObjects.ContainsKey(SecondObjectType.MyObject.Name))
        MyObjects.Add(SecondObjectType.MyObject.Name, SecondObjectType.MyObject);
}

ddl.DataSource = myObjects;
ddl.DataTextField = "Name";
ddl.DataValueField = "Id";
ddl.DataBind(); 

Has anybody noticed an issue with DropDownList and databinding to a SortedList? The SortedList is sorted in the order I expect. But when the DropDownList is bound to the SortedList, the order displayed on the DropDownList is not same as the SortedList.

I am suspecting that the order is according to the MyObject.Id instead of the key of the SortedList.

Any comments? What would be the best way / most efficient way / easiest way / best performance way to correct this? (not expecting an answer for best/efficient/easy, on shall suffice :) )

link|improve this question
@jason-down : thanks for the formatting. – thehhv Aug 4 '11 at 1:50
Not a problem. It's easier to read when there are no scroll bars. – Jason Down Aug 4 '11 at 1:54
What if you change the DataValueField to "Key" and DataTextField to "Value"? (I'm not sure so not posting as an answer) – Jason Down Aug 4 '11 at 1:57
Can somebody with priviliges delete this question? A bit of ranting: Why is working on somebody else's code so much fun? They have three ways for getting the same data. One uses the Sorted list, the others, I won't even mention... The one using the SortedList works as expected. They must have written the code one late Friday night. – thehhv Aug 4 '11 at 2:08
feedback

closed as too localized by Robert Harvey Aug 4 '11 at 4:49

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

A sorted list is an enumerable of KeyValuePairs, not the type you specified: MyObject. You must first get the list of objects, and then assign it to the DropDownList:

ddl.DataSource = myObjects.GetValueList();
ddl.DataValueField = "Id";
ddl.DataTextField = "Name";
ddl.DataBind();
link|improve this answer
I do not think this is the issue. Found out that the one using the SortedList works as expected. But nonetheless, thanks for your answer. – thehhv Aug 4 '11 at 2:09
feedback

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