我有创建动态单选按钮的复杂需求。
理论是你有类别,这些类别有项目。类别是动态的,它们的项目也是动态的。
在我的模型中,我有...
公共 IList> ItemCategories { 获取;放; }
但我不确定这是否是创建 radioFor 按钮的正确方法?
帮助?
我最初的想法是...
//模型
public IList<Category> DynamicCategories { get; set; }
public IList<long> DynamicCategoryItems { get; set; }
//HTML
@for (int i = 0; i < Model.DynamicCategories.Count; i++)
{
@Html.EditorFor(model => model.DynamicCategories[i], "DynamicCategories", new { Index = i, IsHidden = false })
}
//编辑
@model Category
@{
Entities.Category rowModel = new Entities.Category();
int count = ViewBag.Index == null ? 0 : (int)ViewBag.Index;
}
<h3>@Model.Name</h3>
<div class="options">
@foreach (CategoryItem item in Model.CategoryItems.Where(x => x.Enabled))
{
<div class="option" data-search-text="@item.Name">
@item.Name
<input type="radio" name="DynamicCategoryItems[@count]" value="@item.Id" @(item.Selected ? "checked" : "")/>
</div>
}
<div class="clear"></div>
</div>