Optional
customYou can use custom field implementations, by specifying their type
attribute to a custom
value and supplying a FormFieldManager here that can handle this type.
Structure of the form, i.e. which fields are contained in which sections.
Optional
initialOptional
onOptional
ononSubmit
is triggered when the user has completed all required fields and triggers the
submit button at the end of the page.
the final value of the form.
Optional
valueCurrent value of the form. Omit to leave the component in uncontrolled mode.
The input structure for creating a new form, either by directly rendering it as component in Ink, or by invoking
openForm(form)
with it. You have to supply aform
attribute to define the structure of the form. You should also supply aonSubmit
attribute to receive the results when the user submits the form.The form is uncontrolled by default, you can specify an initial value with
initialValue
. You can also switch to controlled mode by explicitly setting avalue
and reacting toonChange
events.