在我的 mvc4 应用程序中保持复选框的状态时,我确实遇到了问题。我正在尝试将其值发送到我的控制器逻辑,并根据给定值刷新模型中的列表,然后再将模型发送回具有新值的视图。鉴于我的复选框是“在列表中显示禁用的元素”类型的功能,我需要它能够打开和关闭。我已经看到了很多不同的解决方案,但我似乎无法让它们工作:(
以下是我的部分观点:
@model MyProject.Models.HomeViewModel
<div class="row-fluid">
<div class="span12">
<div class="k-block">
<form action="~/Home/Index" name="refreshForm" method="POST">
<p>Include disabled units: @Html.CheckBoxFor(m => m.Refresh)</p>
<input type="submit" class="k-button" value="Refresh" />
@* KendoUI Grid code *@
</div>
</div>
主视图模型:
public class HomeViewModel
{
public List<UnitService.UnitType> UnitTypes { get; set; }
public bool Refresh { get; set; }
}
HomeViewController 将需要一些重构,但这将是一项新任务
[HttpPost]
public ActionResult Index(FormCollection formCollection, HomeViewModel model)
{
bool showDisabled = model.Refresh;
FilteredList = new List<UnitType>();
Model = new HomeViewModel();
var client = new UnitServiceClient();
var listOfUnitsFromService = client.GetListOfUnits(showDisabled);
if (!showDisabled)
{
FilteredList = listOfUnitsFromService.Where(unit => !unit.Disabled).ToList();
Model.UnitTypes = FilteredList;
return View(Model);
}
FilteredList = listOfUnitsFromService.ToList();
Model.UnitTypes = FilteredList;
return View(Model);
}