Callbacks
Callbacks are a set of methods that are "registered" in wise-form
at the time of instantiating the FormModel
. They're intended to be used in the flow of forms to handle different scenarios efficiently.
The purpose of these callbacks is to offer common functionalities that can be utilized to manage various situations throughout a form's lifecycle. These callbacks are typically employed when implementing dependencies between fields/wrappers.
Let's explore how to integrate a callback into a form in a typical case:
Integrating a Callback into a Form
action-manager.ts
In the example above, we define the copyValue
callback within an object called ActionManager
. This approach helps in organizing all our callback functions cleanly, although regular functions can also be used if preferred.
Registering the Callback
Now, let's register our callback:
store.ts
That's how we register our callbacks. Now, let's put it to use:
We'll have a select field, and when we change the selected value, we'll copy that value and set it in a different input called selectedCountry
. Simple and effective.
form.ts
In this setup, whenever the country
field changes, the selectedCountry
field will automatically update to reflect the new value. This demonstrates a straightforward yet powerful way to leverage callbacks within your form logic, enhancing dynamic interactivity and data flow between fields.
Last updated