Nutrient Web SDK

ReferenceEventsFormFieldsCreateEvent

Type Alias FormFieldsCreateEvent

This event is emitted when form fields are created. The event includes the list of created form fields.

Type Alias
Type Signature

Example

Get the list of created form fields.

instance.addEventListener("formFields.create", (formFields: FormFieldsCreateEvent) => {
console.log(formFields.toJS());
});

See Also