我刚刚开始发现布罗特Hml和Im与BoxList求助器 st。
这里是法典
<ul>
<%=this.CheckBoxList(m=>m.Filter)
.Options(criteria.Choices, x => x.Code, x => x.DisplayText)
.Selected(Model.Filter)
.Label(criteria.Label).ItemFormat("<li> {0} </li>")
%>
</ul>
因此,我有一个基于“标准”的核对清单,该清单被归类为清单和编号;ChoiceViewModel>
这里是法典 of a ChoiceViewModel
public class ChoiceViewModel
{
// Some stuff
public string Code { get{ return _code; } }
public string Label { get { return _label; }}
public string DisplayText { get { return _displayText;}
}
}
And my problem is : I want to disable the checkbox under a condition.
请允许我指出,如果《守则》不以“A”为起点,那么我就希望打破检查箱。
我如何能够做到这一点?
Thanks, Hasan