Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a code like this in MVC 3 @Html.DropDownList("SomeID", "Select ID") i need to apply some styles to this Dropdown.

this doesn't working for me " new { @class="dropdown" }".

Help me, thanks in advance.

Thanks, Ramesh Kumar

share|improve this question

2 Answers

when you use like this

@Html.DropDownList("SomeID", "Select ID")

then this is not working " new { @class="dropdown" }"

so for use your css then you use like this

<div class="editor-field">
@Html.DropDownListFor(model => model.CountryId, new SelectList(Model.Countries, "ID", "Name"), "select", new { @ID = "ddlCountry", @class = "text", Style = "width: 150px;", onchange = "javascript:cascadingdropdown();" })
    @Html.ValidationMessageFor(model => model.Citys.countryID)
</div>

i think this will help you

share|improve this answer

Use this:

 @Html.DropDownList("MyDropdown", MySelectList, new { @class="mycssclass" })
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.