MVC-3 / jQuery:停止validation我的复选框

我有MVC-3用户控件(html帮助器和aspx视图引擎)。 一些如何在我提交表单jQuery un-obtrusivevalidation时启动并要求我检查所有复选框。 我该如何预防呢?

更多信息:

1)我的模型中没有必需的属性。

2)我在telerik gridview中使用此复选框

namespace Alpha.Views { public class AlphaCheckBoxControl : ViewUserControl { } public class AlphaCheckBox { public bool isChecked; public string name { get; set; } public MvcHtmlString labelText; public bool readOnly; public bool visible { get; set; } public IDictionary htmlAttributes() { var dict = new Dictionary(); if (readOnly) dict.Add(@"readonly", "readonly"); if (readOnly) dict.Add("disabled", "disabled"); return dict; } } }