我正在使用pagedlist显示列表,该列表具有可为空的bool for status.Below是代码
@Html.CheckBoxFor(modelItem => item.Status.HasValue, new { @onclick = "UpdateStatus(" + item.Id + ",this)" })
我将状态值作为bool传递,但即使状态为false,默认情况下仍会检查所有复选框。有什么建议吗?
答案 0 :(得分:0)
将我的复选框更新为
@Html.CheckBox("Id", item.Status.HasValue ? item.Status.Value : false, new { @onclick = "UpdateStatus(" + item.Id + ",this)" })