Component Functions

Component functions are functions specific to a dashboard component or container. You may use component functions to invoke a component functionality without involving user interaction.

Just like component events, component functions are called from dashboard bindings.

See dashboard data model for more information.

Calling Dashboard Component Functions

You can call component functions from dashboard bindings using the form/ schema.

To do so, specify the function as a binding target and construct a table with function parameters in the binding expression.

Target

form/componentName:componentFunction()

Expression

An expression that evaluates to a table with function parameters.

Activator

Any valid binding activator.

Another way to call component functions is through binding expressions. You can use this method if you want to use the output of a component function. Like other functions, component functions output Data Tables. If the binding target does not accept Data Table value types, then you need to expand the expression to convert the function output to a required format.

Target

Any valid binding target.

Expression

{form/componentName:componentFunction(functionParameters)}

Activator

Any valid binding activator.

Was this page helpful?