通过jQuery

时间:2017-08-16 20:37:26

标签: jquery html asp.net validation

是否可以使用jquery验证通过devexpress生成的输入? 每次我尝试使用:

验证我的元素
$('name').valid() 

尽管我在devexpress控件中写了这个,但它仍然返回true:

Properties.ValidationSettings.RequiredField.IsRequired = true;

只有在我直接在html中添加“required”元素时才可以进行验证。

点击devexpress按钮后,在发送表单之前还有什么更多验证。

1 个答案:

答案 0 :(得分:0)

我通过添加:

解决了这个问题
settings.Properties.ClientSideEvents.Init = "function(s,e){ var input = s.GetInputElement(); $(input).attr('required', 'true');}";