Type Alias FormFieldsCreateEvent
Type Alias
Type Signature
Example
Get the list of created form fields.
instance.addEventListener("formFields.create", (formFields: FormFieldsCreateEvent) => {
console.log(formFields.toJS());
});
Nutrient Web SDK
Get the list of created form fields.
instance.addEventListener("formFields.create", (formFields: FormFieldsCreateEvent) => {
console.log(formFields.toJS());
});
This event is emitted when form fields are created. The event includes the list of created form fields.