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.

When I do this:

new SelectList(items, dataValueField, dataTextField, items.First());

I get a SelectList with that item selected (it is inserted as SelectedValue), but not highlighted.

What should I do to get a dropdown with a list where I decide in advance what item is selected when the page loads?

share|improve this question

1 Answer

up vote 1 down vote accepted

Let's say that dataFieldValue = "Id", try this:

new SelectList(items, dataValueField, dataTextField, items.First().Id);

It's looking for the value, not the item.

share|improve this answer
That did the trick and actually solved a few of my other problems with the selectlist too :) – Boris Callens Dec 4 '08 at 9:59

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.