Web UI Special References
A Web UI special reference initiates an operation specific to the Web UI. It has the following format:
web/operation([parameter1, parameter2,...])
The following operations are supported:
Logout
The reference web/logout()
terminates the current Web UI session and logs the user out. If the user is signed in with Single Sign-On (SSO), a command will be sent to the Identity Provider to invalidate the current authentication token.
Execute Action
The reference web/executeAction(context, action[, parameters])
called from a context, executes the indicated action. Action input parameters can be supplied if necessary.
Parameter Name | Parameter Type | Details |
---|---|---|
context | String | Context path to the context of the desired action. |
action | String | Name of action to execute. |
parameters | Data Table | Data table containing action input parameters. The field names of the data table must be the input parameter names of the action. The data table must contain a single row, with the values for each input parameter. |
Redirect
The reference web/redirect(dashboard, historyUrlChanged, newTab, parameters, componentLocation)
redirects the current user to the web dashboard indicated by the dashboard
parameter. The dashboard
parameter can be either a context path or another URL entirely.
Parameter Name | Parameter Type | Details |
---|---|---|
dashboard | String | The dashboard context path or an absolute URL. Example values:
|
historyUrlChanged | Boolean | Default value is
|
newTab | Boolean | Default value is
|
parameters | Data Table | Data table indicating dashboard parameters to append to the URL. The data table must have a single row, with a field for every parameter. Each field of the data table represents a query parameter, and the corresponding value in the row must contain the value for that key-value pair. By default, the In order to redirect the user to a new dashboard instance, provide a unique value with one or more of the special parameter keys:
Example The {web/redirect( Will concatenate the URL with the following query string: ?key1=value1&key2=value2 The redirect URL will be: http://www.dashboardserver.com/users.admin.dashboards.exampleDashboard?key1=value1&key2=value2 Redirecting to an external site ( {web/redirect( Is identical to calling: {web/redirect("http://some.external-site.example.com?key1=value1&key2=value2")} |
componentLocation | Data Table | Formatted the same as the Component Location variable and is applied only in the case when both the newTab and historyUrlChanged parameters are The componentLocation parameter indicates the Component Location variable that should be applied to the dashboard when it is opened. This controls the location of dashboard in relation to the dashboard where the The helper functions Create Component Location for Grid, Create Component Location for Absolute, and Create Component Location for Dockable from the Utilities Context can be used to conveniently create a properly formatted data table for the componentLocation parameter. Example The function evaluate( |
Was this page helpful?