Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify use of regexp for pattern validator #579

Merged
merged 1 commit into from Jan 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -1845,7 +1845,7 @@ The `jsGrid.validators` object contains all built-in validators. The key of the
* **rangeLength** - the length of the field value is limited by range (the range should be provided as an array in `param` field of validation config)
* **minLength** - the minimum length of the field value is limited (the minimum value should be provided in `param` field of validation config)
* **maxLength** - the maximum length of the field value is limited (the maximum value should be provided in `param` field of validation config)
* **pattern** - the field value should match the defined pattern (the pattern should be provided as a string regexp in `param` field of validation config)
* **pattern** - the field value should match the defined pattern (the pattern should be provided as a regexp literal or string in `param` field of validation config)
* **range** - the value of the number field is limited by range (the range should be provided as an array in `param` field of validation config)
* **min** - the minimum value of the number field is limited (the minimum should be provided in `param` field of validation config)
* **max** - the maximum value of the number field is limited (the maximum should be provided in `param` field of validation config)
Expand Down