Events
toolbar.documentEditorFooterItemsChange
Detailed viewer event reference for toolbar.documentEditorFooterItemsChange.
Summary
- Category: Toolbar
- Event:
toolbar.documentEditorFooterItemsChange - Trigger: Fires when document editor footer items change.
Payload
[ToolbarItemsChangeEvent];
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('toolbar.documentEditorFooterItemsChange', payload);
}
instance.addEventListener('toolbar.documentEditorFooterItemsChange', onEvent);
instance.removeEventListener('toolbar.documentEditorFooterItemsChange', onEvent);