Not getting validation message for @Html.DropDownListFor() once Chosen jquery is used
Code is given below: If i do not select any value in the combobox and press submit, no validation message is asked. <tr> <td>Department </td> <td> : </td> <td class="@*@Model.NoEdit*@"> @Html.DropDownListFor(m => m.DepartmentId, new SelectList(Model.Departments, "SelectedDepartmentId", "DepartmentCode"), "-- Select Department--", new {@class = "chosen-select", id = "cboDeptartment" }) @Html.ValidationMessageFor(model => model.DepartmentId) </td> Restating my brief comment as an answer. :-) To get the validation messages, I use the same approach Joseph mentions, though I use an HTML class for