onSubmit()
This event handler runs when a step of the form is submitted.
Overview
onSubmit
is a <Feathery.Form> prop and callback function to access and modify form state when a form step is successfully submitted. It's called every time the user is about to successfully submit a step of the form, but before the actual submission happens. This function can be asynchronous.
Usage
You can use onSubmit
to store the submitted user data, update your rendered components, set custom errors, and more. It takes a single Context object that provides form-related state and handlers.
Context API
triggerData
Object
triggerData
ObjectReturn value
A promise can be optionally returned from this function if it's asynchronous and you want execution to await.
Last updated