ShowPopupDashboard
Description
Shows a dashboard in popup window.
Syntax
// The dashboard variable here points to instance of IDashboard
const result = await dashboard.ShowPopupDashboard(dashboardID, data, title);
Parameters
Name | Type | Description |
---|---|---|
dashboardID | string | The dashboard ID as defined in Application Definition File (appdef file). |
data | any | The custom data that is passed for dashboard. Can be accessed with CustomDataProperty of IDashboard Interface. |
title | string | The title of the Dashboard. |
Return type
Type | Description |
---|---|
Promise < IDashboard > | The popup dashboard. |