Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
16k views

MVC & RadioButtonList

I tried doing this but this only display the radiobutton without text beside it.. <% foreach (string s in Html.RadioButtonList("rbl")) {%> <% =s %> ...
6
votes
1answer
2k views

How to get the selected value of the radio button list in jquery?

I have radio button list which has id as the value, I want to access the selected id in the jquery function.
0
votes
1answer
123 views

passing a model to radiobutton which has three different values for example

<%: Html:RadioButtonListFor(model=>model.Country, Model.Countries, new {@class="countrytype"})%> These countries has three values U.S, Canada, Other. But i want U.S to be selected by ...
0
votes
1answer
93 views

i am passing models to radiobutton, how can i make one as default?

passing a model to radiobutton which has three different values for example <%: Html:RadioButtonListFor(model=>model.Country, Model.Countries, new {@class="countrytype"})%> these countries has ...