Unobtrusive validation not working after adding checkboxes to the form in mvc 4

时光毁灭记忆、已成空白 提交于 2019-12-02 03:36:35

问题


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.


回答1:


I had exactly this problem & posted a question here. Currently I don't have a solution to the problem, but I did find a workaround. Instead of using Html.CheckBoxFor I used Html.CheckBox like so:

@Html.CheckBox("Employee.Active")

I gave it the same name as the CheckBoxFor that was created by the razor view. This is now working as I expected but I consider it a workaround rather that a solution, and I have no idea what's actually causing the problem!



来源:https://stackoverflow.com/questions/18415655/unobtrusive-validation-not-working-after-adding-checkboxes-to-the-form-in-mvc-4

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!