Events
formFields.change
Detailed viewer event reference for formFields.change.
Summary
- Category: Forms
- Event:
formFields.change - Trigger: Fires after form field definitions change.
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.change', payload);
}
instance.addEventListener('formFields.change', onEvent);
instance.removeEventListener('formFields.change', onEvent);