I want to make checkboxes optional, whether to be checked or not. But when I add a checkbox on my view it will make unobtrusive validation to be stopped. But when I remove the checkbox from my view, unobtrusive validations works fine. What's the problem ? I am adding checkbox like this:
@Html.CheckBoxFor(model => model.features.safetyfeature.Airbag)
All the model values are correct.