Global events are used as a trigger that executes different client scripts. These scripts may call various actions, for example, to open a created record.
activityFeedCommentTabChanged
The event occurs after the comment tab in the Activity Feed widget has changed.
Return:
Type
Description
Object
This method returns a widget with the previous value and the current value of the tabs.
8 Comments
editor
editor
editor
editor
editor
SimpleEventBus.on(
'afterSaveAndGetUiActionsEvent'
, async (obj) => {
const savedRecordId = obj.payload.recordId;
});
editor
SimpleEventBus.on(
'afterLoadBreadcrumbs'
, async (obj) => {
...
});
editor
SimpleEventBus.on(
'afterLoadBreadcrumbs'
, async (obj) => {
...
}
});
editor
SimpleEventBus.on(
'afterLoadWidgets'
, async (isLoading) => {
...
// do something
}
});