Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

In order to assist developers in the implementation of field validations, a new validation engine has been added to the platform that will significantly reduce the amount of JavaScript that needs to be created to perform validations on Input controls.

The validations can be configured by going into the details of the Type property (See below).

The validations section appears at the bottom of the Type dialog.

Validation OptionDescription
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.

As of FAB 3.3.2 version, a Validate button is now available for checking the validity of Regex validation.


Regex shows the information message when hovering on the Regex field.

  • The question mark icon is also showing the information message when hovering on the icon.

The Regex should have information messages for the escape character "\" when there is a character "{" and "}".





When entering a Regex value there is a reminder to use escape character.





When entering a Regex value with characters "{"or "}" without the escape character "\", upon clicking continue the escape character should be automatically added on the regex.





Regex with escape character "\" already should not have double escape character upon save.



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
function validateMyValue(evt)
{
  var value = evt.getSource().getValue();
  return value == "Valid Value";
  // returning true indicates validation success
}

In the above example, the function name you would enter into the Script Function field would be:  validateMyValue(evt)

Error MsgYou can provide your own custom error message to be displayed when validations fail.  If not text is supplied, "Invalid Entry" will be displayed.
Validate Search Help ValueChecking 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 RequiredChecking 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 LevelThis 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.
  • No labels