Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 29b28d2

Browse files
committed
Added 2.3
1 parent eeff933 commit 29b28d2

File tree

1 file changed

+34
-25
lines changed

1 file changed

+34
-25
lines changed

src/guides/v2.3/config-guide/prod/config-reference-systemxml.md

Lines changed: 34 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -358,29 +358,38 @@ The following validation rules are available:
358358

359359
| Rule | Description |
360360
|---------------------------------|-------------------------------------------------------------------------------------------------------------------------|
361-
| `alphanumeric` | Allows letters, numbers, spaces or underscores only. |
362-
| `integer` | Enter a positive or negative non-decimal number. |
363-
| `letters-only` | Allows letters only. For example, `abcABC`. |
361+
| `alphanumeric` | Allows letters, numbers, spaces or underscores only. |
362+
| `integer` | Allows a positive or negative non-decimal number. |
363+
| `ipv4` | Allows a valid IP v4 address. |
364+
| `ipv6` | Allows a valid IP v6 address. |
365+
| `letters-only` | Allows letters only. For example, `abcABC`. |
366+
| `letters-with-basic-punc` | Allows letters or punctuation only.<br>Must pass the following expression: `/^[a-z\-.,()\u0027\u0022\s]+$/i`. |
367+
| `mobileUK` | Allows a (UK) mobile phone number. |
368+
| `no-marginal-whitespace` | Disallows white spaces at the start or end of the value. |
364369
| `no-whitespace` | Disallows white spaces. |
365-
| `time` | Allows a valid time in 24-hour format, between 00:00 and 23:59. For example `15`, `15:05` or `15:05:48` |
366-
| `time12h` | Allows a valid time in 12-hour format, between 12:00 am and 11:59:59 pm. For example `3 am`, `11:30 pm`, `02:15:00 pm`. |
367-
| `validate-no-html-tags` | HTML tags are not allowed. |
368-
| `validate-select` | Select an option. |
369-
| `validate-no-empty` | Empty Value |
370-
| `validate-alphanum-with-spaces` | Use letters (a-z or A-Z), numbers (0-9), or spaces only in this field. |
371-
| `validate-data` | Use letters (a-z or A-Z), numbers (0-9), or underscores (_) only in this field. The first character should be a letter. |
372-
| `validate-street` | Use letters (a-z or A-Z), numbers (0-9), spaces, and “#” only in this field. |
373-
| `validate-phoneStrict` | Enter a valid phone number. For example, (123) 456-7890 or 123-456-7890. |
374-
| `validate-phoneLax` | Enter a valid phone number. For example, (123) 456-7890 or 123-456-7890. |
375-
| `validate-fax` | Enter a valid fax number. For example, 123-456-7890. |
376-
| `validate-email` | Enter a valid email address. For example, johndoe@domain.com. |
377-
| `validate-emailSender` | Enter a valid email address. For example, johndoe@domain.com. |
378-
| `validate-password` | Enter 6 or more characters. Leading and trailing spaces will be ignored. |
379-
| `validate-admin-password` | Enter 7 or more characters, using both numeric and alphabetic. |
380-
| `validate-url` | Enter a valid URL. Protocol is required (http://, https:// or ftp://). |
381-
| `validate-clean-url` | Enter a valid URL. For example, http://www.example.com or www.example.com. |
382-
| `validate-xml-identifier` | Enter a valid XML-identifier. For example, something_1, block5, id-4. |
383-
| `validate-ssn` | Enter a valid social security number. For example, 123-45-6789. |
384-
| `validate-zip-us` | Enter a valid ZIP code. For example, 90602 or 90602-1234. |
385-
| `validate-date-au` | Use this date format: dd/mm/yyyy. For example, 17/03/2006 for the 17th of March, 2006. |
386-
| `validate-currency-dollar` | Enter a valid $ amount. For example, $100.00. |
370+
| `phoneUK` | Allows a (UK) phone number. |
371+
| `phoneUS` | Allows a (US) phone number. |
372+
| `required-entry` | Disallows an empty value (equivalent validation as `validate-no-empty`).<br>Validation failure message: "This is a required field." |
373+
| `time` | Allows a valid time in 24-hour format, between 00:00 and 23:59. For example `15`, `15:05` or `15:05:48`. |
374+
| `time12h` | Allows a valid time in 12-hour format, between 12:00 am and 11:59:59 pm. For example `3 am`, `11:30 pm`, `02:15:00 pm`. |
375+
| `validate-admin-password` | Allows 7 or more characters, using both numeric and alphabetic. |
376+
| `validate-alphanum-with-spaces` | Allows usage of letters (a-z or A-Z), numbers (0-9), or spaces only. |
377+
| `validate-clean-url` | Allows a valid URL. For example, http://www.example.com or www.example.com. |
378+
| `validate-currency-dollar` | Allows a valid (dollar) amount. For example, $100.00. |
379+
| `validate-data` | Allows usage of letters (a-z or A-Z), numbers (0-9), or underscores (\_) only.<br>The first character must be a letter.<br>(Must match expression: `/^[A-Za-z]+[A-Za-z0-9_]+$/`)<br>Validation failure message: "Please use only letters (a-z or A-Z), numbers (0-9) or underscore (\_) in this field, and the first character should be a letter." |
380+
| `validate-date-au` | Enforces the following date format: dd/mm/yyyy. For example, 17/03/2006 for the 17th of March, 2006. |
381+
| `validate-email` | Allows a valid email address. For example, johndoe@domain.com. |
382+
| `validate-emailSender` | Allows a valid email address. For example, johndoe@domain.com. |
383+
| `validate-fax` | Allows a valid fax number. For example, 123-456-7890. |
384+
| `validate-no-empty` | Disallows an empty value (equivalent validation as `requried-entry`).<br>Validation failure message: "Empty value." |
385+
| `validate-no-html-tags` | Disallows usage of HTML tags. |
386+
| `validate-password` | Allows 6 or more characters. Leading and trailing spaces will be ignored. |
387+
| `validate-phoneLax` | Allows a valid phone number. For example, (123) 456-7890 or 123-456-7890. |
388+
| `validate-phoneStrict` | Allows a valid phone number. For example, (123) 456-7890 or 123-456-7890. |
389+
| `validate-select` | Enforces that the select option chosen not have a `null` value, string value of `none` or string length of 0. |
390+
| `validate-ssn` | Allows a valid (US) social security number. For example, 123-45-6789. |
391+
| `validate-street` | Allows usage of letters (a-z or A-Z), numbers (0-9), spaces, and “#” only. |
392+
| `validate-url` | Allows a valid URL. Protocol is required (http://, https:// or ftp://). |
393+
| `validate-xml-identifier` | Allows a valid XML-identifier. For example, something_1, block5, id-4. |
394+
| `validate-zip-us` | Allows a valid (US) ZIP code. For example, 90602 or 90602-1234. |
395+
| `vinUS` | Allows (US) vehicle identification number (VIN) value. |

0 commit comments

Comments
 (0)