我已经建立了模型验证我的形式,但验证似乎并没有在所有的工作。 我不认为任何人都可以提供帮助。 我一直在使用,周围的工作如下尝试,但,保持在Firebug拉起一个“未定义”的错误。
例如变通脚本:
<script type="text/javascript">
$(document).ready(function () {
$.validator.setDefaults({ ignore: [] });
});
</script>
例如文本字段(注:与客户的名称自动填充文本字段):
@Html.TextBox("txtCustomer", null, new { @id = "txtCustomer", @class = "txt" })
实施例隐藏字段(注意:当选择从自动完成领域取得了id被注入到隐藏字段):
@Html.HiddenFor(model => model.Customer_ID, new { @id = "hCustomerID" })
实施例模型数据注释
[Range(1, Int32.MaxValue, ErrorMessage = "Please select a customer")]
public int Customer_ID { get; set; }
编辑:错误的屏幕截图
对不起,我要发布链接的截图,因为我的代表处点足够高。
UI回发错误
编辑:截图显示页面的源代码
页面源代码的屏幕截图