I'm building an application using ASP.net MVC 3 and I'm wondering if anyone knows a great library to fill the gaps of the build-in html form field helpers?
E.g. creating a Textbox is easy:
@Html.EditorFor(model => model.TextboxTest)
But for creating a Dropdown list I have to write:
@Html.DropDownListFor(model => model.DropdownTest, Model.DropdownTestData)
And it should be written like
@Html.EditorFor(model => model.DropdownTest)
where DropdownTest is a SelectList.
There is an example solution for this which can be found here.
The same is a list of radiobuttons: It's not included in MVC (at the moment). There is another good solution which can be found here and with this solution I would be able to write
@Html.RadioButtonListFor(model=>model.Item,Model.ItemList)
So there are solutions available but not structured in a library (respectively I didn't found one) and I don't want to copy and paste this solutions together piece by piece (because I cannot update it easily with NuGet e.g.), a whole library would be better but I could not find any.
Please help :)
@Html.EditorFor(model => model.DropdownTest)had to render a dropdownlist whereDropdownTestis a SelectList, what property would this dropdownlist bind to? There is a reason why the DropDownListFor helper takes two arguments: a list and a property to use for the model binding and provide default value for this list. So I would be totally against the existence of such helper as it wouldn't make sense. As far as theRadioButtonListForhelper is concerned, it is a couple of lines of code to implement such helper. It will hopefully be included in the vNext. – Darin Dimitrov Jun 17 '11 at 10:09