i tired doing this but this only display the radiobutton without text beside it..
<% foreach (string s in Html.RadioButtonList("rbl")) {%>
<% =s %>
<% } %>
|
|
i tired doing this but this only display the radiobutton without text beside it..
|
|||
|
|
|
|
Elijah Manor wrote about the same trouble in ASP.NET MVC 1.0: ASP.NET MVC Html.RadioButtonList Blues He decided to loop through his DataSource and create individual Html.RadioButton and Label combinations.
|
|||
|
|
|
|
It used to be in the previews but it was removed. If you can't find it in the futures try something like this
|
||
|
|
|
|
Check out the MVC Futures DLL available in the MVC source on codeplex. In it there is an HtmlHelper extension to render RadioButton lists. It can automatically render a SelectList in the ViewData or you can pass it explicitly. Several overloads are available for different needs. |
||
|
|
|
|
If it were me I would just use a series of static HTML elements. I know some consider doing such a throwback to the ASP days, but it simplifies things IMO and ends up making for a more dependable and expectable [so I made up a word] GUI. |
||
|
|