Binding Examples

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

Example 1. Opening a New Widget Upon Button Click

This example shows how to execute a server-side action upon a button click. The most typical case of using this binging type is opening a new widget when a button is clicked on any other widget.

First of all, put a Button component on your widget. Second, add a binding to the button, and configure this binding as follows:

  • Set button's Mouse Pressed event as binding Activator, i.e. set Activator to form/button1:mousePressed@
  • Specify its Launch Widget action as binding Target, i.e. set Target to users.admin.widgets.bindingsDemo:launch!, where users.admin.widgets.bindingsDemo is a context path of widget to launch.
  • Leave binding Expression empty.

Binding configuration:

Target

users.admin.widgets.bindingsDemo:launch!

Expression


Activator

form/button1:mousePressed@

Condition


Options

On Event

It's also possible to close current widget (one with the Button) before the action execution. To configure this:

  • Open Operations property of the Button
  • Add a record with Close operation

Example 2: 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 widget compatible with multiple similar controllers. The widget should be relative and valid for all "voltage controller" devices.

Target

form/voltageAlertPanel:background

Expression

{.:voltageAlert$voltageAlert} ? color(255, 0, 0) : color(0, 255, 0)

Activator


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) ? color(255, 0, 0) : color(0, 255, 0)

Example 3: Binding Slider Component to Setpoint of a Controller

This pair of bindings will change setpoint of a controller (e.g. temperature controller) once a slider is moved.

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

Target

form/slider1: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/slider1:value}

Activator


Condition


Options

On Event

Example 4: 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/result:dataTable

Expression

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

Activator

form/execute:click@

Condition


Options

On Event

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

callFunction("", "executeQuery", {form/query: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 5: Calling Device Function

This example explains how to perform device or server function call from a widget. 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 Widget 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/argument1:text})

Activator

form/calculate:click@

Condition


Options

On Event

Note that we're using relative context path (".") in the target to make calculation widget 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 widget component (such as a label)? Here is the solution:

Method Two: Calling Function from a Widget 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/argument1:text}), "result")

Activator

form/calculate:click@

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?