JavaScript/jQuery Validator - PatternRule
Type:
To specify the regular expression that the validated field must match, set the rule's pattern configuration option.
See Also
message
Type:
Default Value: 'Value does not match pattern'
You do not have to specify this field. In this instance, a default message will be shown. To include the name of the validated editor into the default validation message as a subject, set the name field of the dxValidator object.
If you assign an empty string to the message field, the message will not be shown.
type
Type:
Accepted Values: 'required' | 'numeric' | 'range' | 'stringLength' | 'custom' | 'compare' | 'pattern' | 'email'
Set this field to "pattern" to define a rule that will be broken if the validated value does not match the regular expression specified by the pattern configuration option.
Feedback