i
Validations
Field validations allow to control data format, fields behavior, and the business logic when using form instances, so that incorrect or invalid data for the business is not entered.
Data Format Validations
This validation is carried out implicitly for all form fields and controls that the format of the data entered by users is correct for each field.
Example
If a date does not verify the MM/DD/YY format, the user receives an alert message.
Required Validations
This validation verifies that data is entered in the required fields. In other words, a form instance cannot be created if the required input fields were not completed.
A required field is indicated by a red asterisk to the right of the label.
Example
If the Concept field is not completed, the user receives an alert message.
Logic Validations
Logic validations verify that the entered fields comply with the conditions modeled in the form by means of the field validation or form validation properties.