You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The multiform is not necessarily supported out-of-the-box, but you could add an onUpdate callback to the form itself, and then update local state to keep track of whether the necessary data was set in the form to allow the "next" button.
It'd be interesting to think about adding a button type to the available FormItems so you could write conditions around it.
<Form
instance={instance}
onUpdate={(id, value) => {
// Update local state to detect whether the
// form has been updated with the necessary data
// to render the "Next" button
}}
onSubmit={(hasError) => {}}
/>
{doShowNextButton && <button>Next</button>}
And I think the searchable dropdown would be pretty interesting. I created #16 as an enhancement for this.
Hi,
The text was updated successfully, but these errors were encountered: