Add drill-down events when using 'Dashboard' component(sn-dashboard) on landing pages in UI BuilderDescriptionWhen developing a landing page in configurable workspaces using UI Builder, it is likely to use a 'Dashboard' component and reference it to use a par_dasboard. But in some situations, the drill-down events do not work until they are explicitly configuredInstructionsIn this scenario, with various widgets such as single score visualizations, bar charts, and more, we aim for drill-down events to reveal a list of records corresponding to the criteria we've selected. For this, we need to create the following: 1. If an OOB 'simplelist' page exists for the experience in question, skip to step 3. If not follow step 2. 2. Create a new page with the name 'simplelist' and make sure it accepts the following parameters: table, listTitle, listView, query 3. Add a new client script on this page with the following script: /** * @param {params} params * @param {api} params.api * @param {any} params.event * @param {any} params.imports * @param {ApiHelpers} params.helpers */ function handler({api, event, helpers, imports}) { api.emit("NAV_ITEM_SELECTED", { "route":"simplelist", "targetRoute": "current", "fields":{ "table": event.payload.params.table, }, "params": { "listTitle": event.payload.params.listTitle, "query": event.payload.params.query, }, }); } 4. Now, open the landing page on which you have the Dashboard component, click on the Dashboard component, click on the Events tab on the right-side panel, add event mapping for 'Dashboard widget clicked', and execute the client script 4. Save the page Review the recording attached