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.

How can I set a select class and other attributes eg:events through the SelectList object?

If this cannot be done, what are the best practices in populating a select input (dropdownlist) ie should I just loop through the items and render the <option> tags

I guess events should be bound to the controls in jquery for instance, but I do need the class forto do this.

share|improve this question

2 Answers

up vote 3 down vote accepted

The htmlAttributes parameter should take an anonymous type initialised like this :

new {@class="some-css-class"}
share|improve this answer
<%=Html.DropDownList("elementname",yourSelectList,"defaultvalue",new{@class="yourclass"}) %>
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.