validate
Last updated
Was this helpful?
Runs the current page validation routine.
action
string
Must be "validate"
options
object
No supported options at this time
onFailed
function
Optional callback that runs if validation fails
{
"actions": [
{
"action": "validate"
},
{
"action": "runUtilityHook",
"options": {
"type": "save"
}
}
],
"text": "Save This Form",
"type": "button"
}BetterForms emits the page validation event and waits for the form validation result.
If validation succeeds, the action queue continues to the next action.
If validation fails, BetterForms clears the pending action queue for that action run.
If onFailed is supplied as a function, BetterForms calls it after validation fails.
validate does not define any runtime options keys in the current implementation.
Last updated
Was this helpful?
Was this helpful?