Events
formFields.update
Detailed viewer event reference for formFields.update.
Summary
- Category: Forms
- Event:
formFields.update - Trigger: Fires after form fields are updated.
Payload
[ImmutableList<FormField>];
Payload fields
Payload is not an object literal. Use the declaration above and runtime guards when handling this event.
Subscription example
function onEvent(payload) {
console.log('formFields.update', payload);
}
instance.addEventListener('formFields.update', onEvent);
instance.removeEventListener('formFields.update', onEvent);