Here is my ViewModel class which i am binding with a radio button and check box
public class MyListViewModel
{
public bool Isselected { get; set; }
public Int32 ID { get; set; }
public string EmpName { get; set; }
}
Issue: For check box in a controller class i can able to see IsSelected property with the binded model is true if select. But in case of Radio button it always shows false. Any help appreciated
Check Box
Razor code
@Html.CheckBox(myListObj.Isselected.ToString(), myListObj.Isselected,
new { id = myListObj.Isselected.ToString() })
Produced HTML
<input type="checkbox" value="true" name="myListObj[0].Isselected" id="22">
<input type="hidden" value="false" name="myListObj[0].Isselected">
Radio Button
Razor:
@Html.RadioButton(myListObj.Isselected.ToString(), myListObj.ID,
myListObj.Isselected, new { id = myListObj.Isselected.ToString() })
Html:
<input type="radio" value="6"
name="myListObj[0].Isselected" id="myListObj[0].Isselected">
What could be the problem here?
Edited:
What could be the code for binding a model with multiselect radio button.
I mean user can select more than one Employee from a list.
I want to know what are the employees selected with the help of Model Binding
class with the property IsSelected. Please suggest me the possible way.
Html.CheckBoxhelper overHtml.CheckBoxForhelper (same goes with radio)? – Brad Christie Dec 19 '12 at 14:14@for (Int32 i = 0; i < Model.Count(); i++) { @html.CheckBoxFor(x => Model[i].Isselected) }would be one way (to retain indexes). – Brad Christie Dec 19 '12 at 14:26