---
sourceDocument: Australia Platform Analytics
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/now-intelligence

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia Platform Analytics

ft:clusterId :

    - par

bundleId :

    - par

workflow :

    - Platform


---

# Dashboard component events

# Dashboard component events {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Select event handlers to configure the actions (events) provided with the dashboard component.
The Events tab shows the events used by the dashboard component. To view the available events, select + Add event mapping. Select the event in the list to add one or more event handlers.

## Event handlers {#dashboard-component-events-setup__section_fnb_mvm_25b}

Event handlers work with data resources to link the dashboard actions to the data you want to display to your users. Select the event in the list to add one or more event handlers.

## Event descriptions {#dashboard-component-events-setup__section_h4k_dw5_c5b}

{#dashboard-component-events-setup__table_j4k_dw5_c5b__entry__2}

| Event | Description |
|-|-|
| Navigate to dashboard overview page | Dispatched when the dashboard is closed and redirects to the dashboard library. You can customize this behavior by changing the route and title in the Redirect to dashboard list client script. To open client scripts, select the \<\> icon in the page's side bar. * @param {params} params * @param {api} params.api * @param {any} params.event * @param {any} params.imports * @param {ApiHelpers} params.helpers */ function handler({api}) { api.emit('SCREEN_STATUS_CHANGED', {status: 'closed'}); api.emit('NAV_ITEM_SELECTED', { route: 'dashboard-library', title: 'Dashboard Library', }); } |
| Dashboard Widget Clicked | Add this event handler if you want to override the default drilldown with custom behavior when a visualization on the dashboard is clicked. It uses the Dashboard Widget Clicked client script. To add a custom drilldown: 1. Set the defaultDrilldowns property to false. 2. Add the Dashboard Widget Clicked event handler. 3. Open the Dashboard Widget Clicked client script. To open client scripts, select the \<\> icon in the page's side bar. 4. Locate the code `api.emit('NAV_ITEM_SELECTED', payload);` and update `payload` to align with your custom redirect logic. {#dashboard-component-events-setup__ol_tkv_qt5_nzb} |
| Dashboard Changed | Enables multiple dashboards and lists to be open in separate workspace primary tabs by distinguishing between direct selection and CMD + click navigation. Supports tab grouping. Parameters: * dashboardSysId * currentTabSysId * filter (filter sys ID if applicable) * passiveNavigation: true for CMD + click, false for direct selection {#dashboard-component-events-setup__ul_dp2_3yc_yhc} Example: ('DASHBOARD_CHANGED', ,{ params: { dashboardSysId: 123, currentTabSysId: 234, filter: 456, } passiveNavigation: true, }) |
[ ]

{#dashboard-component-events-setup__table_j4k_dw5_c5b}

