Hi i am having two groyup of radio buttons, i would like to select one in one group and any one another group, but acctually what happening is, when i select one radio button in 1st group and then if i select any one from 2nd group, 1st selction which i made gets disappear.
Can any one help me
This is radio button controls in my view:
@Html.Label("IAmThe", "I am the*", new { @id = "lblIam", @class = "control-label col-md-4" })
@Html.RadioButton("Active", 1, new { @class = "rbBorrower1", @name = "rbo" }) Primary Borrower
@Html.RadioButton("Active", 5, new { @class = "rbThirdparty", @name = "rbo" }) Authorized 3rd Party
@Html.RadioButton("Active", 6, new { @class = "rbSuccessorInInterest", @name = "rbo" }) Successor In Interest
@Html.Label("lblPreferrdContact", "Preferred Method Of Contact", new { @id = "lblPreferrdContact", @class = "control-label col-md-4" })
@Html.RadioButton("Active", "Email", new { @id = "rbEmail", @name = "rbo1" }) Email
@Html.RadioButton("Active", "HomePhone", new { @id = "rbHomePhone", @name = "rbo1" }) Home Phone
@Html.RadioButton("Active", "MobilePhone", new { @id = "rbMobilePhone", @name = "rbo1" }) Mobile Phone
@Html.RadioButton("Active", "Website", new { @id = "rbThisWebsite", @name = "rbo1" }) This Website
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mohan ArumugamPosted Apr 26, 2018, 5:23 AM