Binding Examples

This section offers some real-life examples of dashboard bindings.

Example 1: Binding Panel Color to Status of a Controller

This binding will make a status panel red if a voltage alert is reported by the controller. In other cases the panel will be green.

Note that the expression and the target reference use relative context paths (".") to make the dashboard compatible with multiple similar controllers. The dashboard should be relative and valid for all "voltage controller" devices.

Target

form/voltageAlertPanel:style

Expression

{.:voltageAlert$voltageAlert} ? "background-color: red" : "background-color: green"

Activator

.:voltageAlert$voltageAlert

Condition


Options

On Startup, On Event

It's possible to modify the above binding to make the panel red if temperature reading is over 50 degrees:

({.:voltage$voltage} > 50) ? "background-color: red" : "background-color: green"

Example 2: Binding Number Field Component to Setpoint of a Controller

This pair of bindings will change setpoint of a controller (e.g. temperature controller) once a number field component changes its value.

First binding is used to read current setpoint value from the controller and initialize the number field:

Target

form/numberField0:value

Expression

{.:currentTemperature$temperatureCelsius}

Activator


Condition


Options

On Startup

Second binding writes new setpoint to the controller once the slider is moved:

Target

.:currentTemperature$temperatureCelsius

Expression

{form/numberField0:value}

Activator


Condition

form/numberField0:value

Options

On Event

Example 3: Binding Table Editor to Query Results

This binding executes a server query whose text is contained in the text field queryText and puts query results into the Data Table Editor component named results.

The query is executed by calling executeQuery of the root server context. The operation is performed upon execute button click.

Note that first parameter of executeQuery function is single-quoted to make the system processing it as expression.

Target

form/results:dataTable

Expression

{:executeQuery('{form/queryText:text}')}

Activator

form/executeButton:mouseClicked@

Condition


Options

On Event

It's possible to use alternative syntax for the above binding's expression:

callFunction("", "executeQuery", {form/queryText:text})

This expression works exactly as the above one. However, it uses callFunction() expression language function to call the server context function by explicitly specifying context path, function name and its parameters.

Example 4: Calling Device Function

This example explains how to perform device or server function call from a dashboard. Assuming we have a device supporting multiply operation with two numeric arguments. We'd like to call this operation upon calculate button click by supplying numbers entered in two text fields (argument1 and argument2).

Method One: Calling Function from a Dashboard Binding Target

In this case our binding's target will point to the function and its expression will return a pre-build parameters data table:

Target

.:multiply()

Expression

table(functionInputFormat(), {form/argument1:text}, {form/argument2:text})

Activator

form/calculateButton:mouseClicked@

Condition


Options

On Event

Note that we're using relative context path (".") in the target to make calculation dashboard compatible with many calculation agents. To use it with just one agent, specify absolute path, e.g. users.my_user.devices.my_agent.

In this example calculation result returned by multiply operation will be discarded. But what if we want to put it into another dashboard component (such as a label)? Here is the solution:

Method Two: Calling Function from a Dashboard Binding Expression

In this case our binding expression will call the function and return its output (a Data Table). The actual calculation result (numeric result field) is extracted from this table using cell() function. This result is written into result label:

Target

form/result:text

Expression

cell(callFunction(dc(), "multiply", {form/argument1:text}, {form/argument2:text}), "result")

Activator

Button:mouseClicked@

Condition


Options

On Event

Note that relative device context path (returned by dc() function) is used. To use absolute context path change dc() to full device path, e.g. users.my_user.devices.my_agent.

There is another (more compact) style of writing the above binding expression to obtain exactly the same result.

This style uses a function reference instead of callFunction() expression language function:

{.:multiply('{form/argument1:text}', '{form/argument2:text}')$result}

Was this page helpful?