Skip to content

Action

An action is a process that corresponds to a handler for a UI component event (button click or input field value change). In principle, one action can be set for one UI component. All the processing generated by an event is consolidated into an action.

Tips

Programming Languages

Actions are written using the JavaScript language.

LanguageSpecificationExecution Environment
JavaScriptES2021Node.js 16

Syntax

The syntax follows JavaScript, a descriptive language. The difference from the regular JavaScript language is the availability of object, built-in function, and user function for actions only.

Tips

Sample

$ui.text_field_1.value = "Hello";
$ui.number_field_1.value = 123;