onLoad()
This event handler runs when a step of the form is loaded.
Overview
This is a <Feathery.Form> prop and callback function to run custom logic when a form step is loaded. It's called every time the user loads a step. This function can be asynchronous.
Usage
You can use onLoad
to update internal form state, log events, etc. The function takes a single Context object that provides form-related state and handlers.
Context API
Return value
A promise can be optionally returned from this function if it's asynchronous and you want execution to await.
Last updated