Uses of Interface
net.pricefx.server.dto.calculation.dashboard.DashboardApi
-
Packages that use DashboardApi Package Description net.pricefx.formulaengine.scripting Provides API related to scripting, including interfacePublicGroovyAPI
, that represents what can be reached in the Groovy element syntax asapi
.net.pricefx.server.dto.calculation.dashboard Provides Dashboard API classes. -
-
Uses of DashboardApi in net.pricefx.formulaengine.scripting
Methods in net.pricefx.formulaengine.scripting that return DashboardApi Modifier and Type Method Description DashboardApi
PublicGroovyAPI. dashboard(String dashboardName)
Returns aDashboardApi
instance for a dashboard of the specified name. -
Uses of DashboardApi in net.pricefx.server.dto.calculation.dashboard
Methods in net.pricefx.server.dto.calculation.dashboard that return DashboardApi Modifier and Type Method Description DashboardApi
DashboardApi. andCloseOn(String eventName)
Close a tab or popup window when the specified event is triggered.DashboardApi
DashboardApi. andRecalculateOn(String eventName)
Specifies on what event the embedded dashboard will be recalculated.DashboardApi
DashboardApi. asParam(String paramName)
Exposes event payload - attribute of the specified name - as a parameter that can be read in the embedded dashboard.DashboardApi
DashboardApi. openInModalOrRecalculateOn(String eventName)
On specified event the embedded dashboard will be opened in a new modal window and recalculated.DashboardApi
DashboardApi. openInTabOrRecalculateOn(String eventName)
On specified event the embedded dashboard will be opened in a new tab and recalculated.DashboardApi
DashboardApi. openInWindowOrRecalculateOn(String eventName)
Deprecated.DashboardApi
DashboardApi. setParam(String paramName, Object value)
The main dashboard can provide input parameters to the embedded dashboard viasetParam(String param_name, Object param_value)
.DashboardApi
DashboardApi. showEmbedded()
Shows given dashboard as an embedded dashboard of another (main) dashboard.DashboardApi
DashboardApi. withEventDataAttr(String attrName)
Allows to expose event payload - attribute of the specified name - as a parameter that can be read in the embedded dashboard.
-