You have been using the input controls like the Text control, the numeric control, currency as well as the selection controls like drop-down control, checkbox control, radio control, and so on. We have seen how to bind data using different data sources. Now at times, you have wanted to add actions that should be performed on the happening of an event like once you select or change the selection from a dropdown or radio control, you may want some action to be performed. Similarly when a control loses focus, then you may want to trigger some action. For this reason, we now have a set of actions added to the different input controls and the selection control.
Event | Description | Controls |
---|---|---|
value_change | when there is a change in the value of the respective input control | Text input Textarea Numeric Prefix and Suffix Currency OTP Phone Address |
focus_out | trigger action when your focus moves to another control | Text input Textarea Numeric Prefix and Suffix Currency OTP Phone Address |
enter_press | trigger event on presssing of the Enter key when you input data | Text input Numeric Prefix and Suffix Currency OTP Phone Address |
value_select | trigger when the value in the respective selection control is selected by clicking an option | Rating Toggle Dropdown Select bar Radio Checkbox Detail select button Select button Image Choice |
button_click | trigger the action on click of the button or step or menu item | Action button Vertical Steps Dashboard |
screen_open | trigger the action when the Screen is opened | Action button Vertical Steps |
screen_close | trigger the action when the Screen is closed | Action button Vertical Steps |
data_click | trigger the action when you click on point on the Chart | Charts control |
on_start | trigger the action when the Timer is started | Timer |
on_stop | trigger the action when the Timer is stopped or paused | Timer |
on_reset | trigger the action when the TImer is reset | Timer |
alarm_interval | trigger actions every time on Alarm Interval timing set earlier | Timer |
link_click | trigger the actions when the link text is clicked | Link |
To have a quick look at how to use these events refer to this video here.
You can find the detailed use of each event in the respective controls.