jQuery Chosen Dropdown validation client site doesn't work
问题 My model class contains of required lookup value which is a lookup-based record: [Required] [DisplayName(\"Business Unit\")] public string value { get; set; } [Required] //not working on client side? [DisplayName(\"Business Group\")] public int id_businessgroup { get; set; } View: <div class=\"editor-label\"> @Html.LabelFor(model => model.value) </div> <div class=\"editor-field\"> @Html.EditorFor(model => model.value) @Html.ValidationMessageFor(model => model.value) </div> <div class=\"editor