...
The validations section appears at the bottom of the Type dialog.
...
Validation Option | Description |
---|---|
Regex | Providing a valid regular expression in this field will cause the platform to evaluate the input value when the form is submitted. If the regular expression test fails, the Value State of the control will be set to Error and the Value State Message will be set to "Invalid entry" or whatever text has been provided in the Error Msg property. |
IQX Fiori App Builder has pre-built choice of regular expressions as follow: The entire Project App is saved as an XML file, ready for export or import to other systems. Therefore, any entered Regular Expression will be included in this XML file. Starting with FAB version 3.3.2 |
, a Validate button is |
available |
to check the validity of Regex. This validation ensures that:
If the regular expression passes these checks, an informational popup saying below message is displayed. Otherwise, this message appears. All RegEx ↔︎ XML translation is now done on back-end and no user action is needed. To view this translation, user may right-click on the element and choose “Show XML”. Here is an example of translated regular expression in XML: Entered RegEx: ^[.\+*?^$()\[\]{}<>&'"`~!@#%_:;=,/-]+$ RegEx in XML: ^[. |
\+*?^$()\[\]\{\}<>&'"`~!@#%_:;=,/-]+$ For FAB version 3.3 and 3.3.1, the Validate button is not yet available but a different user help was in place to ensure correctness of RegEx in XML. This is composed of:
|
|
|
|
When entering a Regex value with
FAB has
|
Script Function | If you require more advanced validations than a regular expression can provide, you can supply the name of a validation function contained within a Script node. Example
|
In the above example, the function name you would enter into the Script Function field would be: validateMyValue(evt) | |
Error Msg | You can provide your own custom error message to be displayed when validations fail. If not text is supplied, "Invalid Entry" will be displayed. Please avoid using special characters on this. |
Validate Search Help Value | Checking this option will ensure that any value entered into the Input field is validated against the values returned in the configured search help. This ensures that a valid value has been entered even if the Search Help dialog was not used. |
Value Required | Checking this option will enforce that a value is provided in this field when the user tabs off the field or attempts to submit the form. |
Required At Approval Level | This option works together with the Value Required checkbox. When the Value Required checkbox is checked, the Required At Approval Level value will be used to determine exactly when the value is required. This is useful in more complex workflows where a value may not be required at the time of creation however the second or third approval level may be required to supply data. |