是否可以使用jquery验证通过devexpress生成的输入? 每次我尝试使用:
验证我的元素$('name').valid()
尽管我在devexpress控件中写了这个,但它仍然返回true:
Properties.ValidationSettings.RequiredField.IsRequired = true;
只有在我直接在html中添加“required”元素时才可以进行验证。
点击devexpress按钮后,在发送表单之前还有什么更多验证。
答案 0 :(得分:0)
我通过添加:
解决了这个问题settings.Properties.ClientSideEvents.Init = "function(s,e){ var input = s.GetInputElement(); $(input).attr('required', 'true');}";