Is there any way to use many model properties in the same radio button group on html without destroying the Name field, which Razor uses to grab the unique field on submit?
I've tried the following:
<h2>Store or Corporate</h2>
<div class="store-selection-buttons">
<label>Corporate</label>
@Html.RadioButtonFor(model => model.JobPostStatus.IsCorporate, "true")
<label>All Stores</label>
@Html.RadioButtonFor(model => model.JobPostStatus.IsAllStores, "true")
<label>Select Stores</label>
@Html.RadioButton("Store Selection", false, new { @id = "select-stores" })
//This one does other selection work in jquery for individual stores (List<int>)
</div>