ActionsvalidateFormVersion: 4.62On this pagevalidateForm Validates the inputs/values of a specified form and triggers another event/action based on the the result of the defined validationExpression of each form layer. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"async"BooleanSpecifies whether the action should perform asynchronously.null"form"StringName of the form that should be validated. If not specified, the form of the current view will be validated.null"onError"StringEvent that will be fired if the form is invalid.null"onErrorType"OnErrorTypeType of the onError event."event""onSuccess"StringEvent tha will be fired if the form is valid.null"onSuccessType"OnSuccessTypeType of the onSuccess event."event" Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Validate a form value Show ExampleHide ExampleValidate the value of the specified form whose validationExpression is [12]([0-9]{3}).{ "type": "validateForm", "params": { "form": "formActionsForm01", "onSuccess": "validationSuccess01", "onError": "validationError01" }}