我有一个问题,我有一个对象列表:
List<MenuProduct> MenuProducts;
MenuProduct
包含的位置:
public class MenuProduct
{
public int MenuProductID { get; set; }
public int LoginID { get; set; }
public int ContractTypeID { get; set; }
public int? ContractID { get; set; }
public string Title { get; set; }
public decimal? Factor { get; set; }
public int OrderNum { get; set; }
public System.DateTime DateCreated { get; set; }
public int UserCreated { get; set; }
public decimal DiscountedRate { get; set; }
public decimal? JointFactor { get; set; }
}
和(部分)模型:
public List<MenuProduct> MenuProducts { get; set; }
public SelectList ContractTypes { get; set; }
public SelectList Contracts { get; set; }
我在这样的视图中约束他们:
@for (int i = 0; i < Model.MenuProducts.Count(); i++)
{
<tr>
<td>@Html.TextBoxFor(x => x.MenuProducts[i].Title, new { @class = "form-control" })</td>
<td>@Html.TextBoxFor(x => x.MenuProducts[i].Factor, new { @class = "form-control" })</td>
<td>@Html.TextBoxFor(x => x.MenuProducts[i].JointFactor, new { @class = "form-control" })</td>
<td>@Html.DropDownListFor(x => x.MenuProducts[i].ContractTypeID, Model.ContractTypes, new { @class = "form-control" })</td>
<td>@Html.DropDownListFor(x => x.MenuProducts[i].ContractID, Model.Contracts, new { @class = "form-control" })</td>
</tr>
}
我遇到的问题是,在加载数据时,因为我使用的是Contracts和ContractTypes的共享列表,所以从不使用正确的值选择SelectLists。
如果我将每个项目移动到这样的部分视图:
@for (int i = 0; i < Model.MenuProducts.Count(); i++)
{
@Html.RenderPartial("_MenuProductItemPartialView", new MenuProductItemModel() { Item = Model.MenuProducts[i], ContractTypes = Model.ContractTypes, Contracts = Model.Contracts})
}
使用这个模型:
public MenuProduct Item { get; set; }
public SelectList ContractTypes { get; set; }
public SelectList Contracts { get; set; }
选择列表中的值是正确的,但是我不能在外页上有一个按钮一次更新所有行 - 至少,我不知道该怎么做。
所以我的问题是:如何让选择列表以第一种方式工作(我可以回发List<MenuProduct>
)或者如何从第二种方式收集每个部分的所有更新数据?因为可能存在从任何行或多行更改的数据。
答案 0 :(得分:1)
您可以使用所选值为每行构建一个SelectList
,它应该可以正常工作。
@Html.DropDownListFor(x => x.MenuProducts[i].ContractTypeID, new SelectList(Model.ContractTypes, "Value", "Text", Model.MenuProducts[i].ContractTypeID), new { @class = "form-control" })