how to populate different types of custom error messages for single text field ?

0
For Example :       Field name & type : Customer Id – Integer type and max length is 10.           Java-script Event : on-onblur            Validations:                         1. If enter alphabetic – it should fire the message like “Numeric only allowed”                        2. If enter negative numbers– it should fire the message like “Positive  Numeric only allowed”                        3. If enter special characters – it should fire the message like “Positive  Numeric only allowed”                        3. If enter more then 10 character – it should fire the message like “Max length 10 characters only allowed”.   How to validate above scenario?
asked
1 answers
1

Hi,

Depending on your use-case and validation method, it is possible. You can use a validation microflow then display any feedback to a particular field using the ‘Validation Feedback’ activity.

answered