Sidebar Event Hooks
Table of contents
Sidebar is a menu bar on the left side of the UI. Sidebar items can be configured in the config.json file and the action handler can be defined through the event hook.
onSidebarEvent
Trigger
This event will be fired after a sidebar item is clicked. This event hook can be used to define the event handler for the click action.
Parameter
export class BroadcastEvent {
name: string;
parameter?: any;
payload?: any;
}