Events
formFieldValues.update
Detailed viewer event reference for formFieldValues.update.
Summary
- Category: Forms
- Event:
formFieldValues.update - Trigger: Fires after form field values are updated.
Payload
[FormFieldValueMap];
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('formFieldValues.update', payload);
}
instance.addEventListener('formFieldValues.update', onEvent);
instance.removeEventListener('formFieldValues.update', onEvent);