Event handlers
In Appizap, event handlers are responsible for collecting and processing events from components and queries, and executing subsequent actions. For example, for a Button component, you can add an event handler to trigger the Run query action in response to the button Click event.

Set event handlers wisely to provide a reactive and responsive user experience (UX). For example, triggering a get-all query after insert-new-data query finishes enables table automatically to refresh.
Events
Component events
Different components have different events. For example, Button components only have a Click event.

Input components have Change, Focus, Blur, and Submit events.

Query events
Running a query can result in success or failure, so queries have two events: Success or Failure. You can add event handlers to queries in Query editor.

Actions
There are a number of event handler actions available in Appizap for handling different scenarios. Set them in the Action dropdown list in an event handler.

Run a Workflow
Select and trigger a workflow that was defined earlier using Workflow Builder.

Run query
Trigger the selected query.

Control components
To control a component, select a component in the Component dropdown list and call one of its methods in the Method dropdown list.

Set temporary state
Store data in a temporary state.
Go to app
Navigate to an Appizap app with optional query or hash parameters.
URL Query
Append ?key1=value1&key2=value2...
to the URL of the app to be opened.
URL Hash
Append #key1=value1&key2=value2...
to the URL of the app to be opened.
Go to URL
Navigate to an external URL.

Show notification
Show a floating notification of informational, success, warning, or error message.

Copy to clipboard
Copy a value to the clipboard.

Export data
Export data in a certain file type.


Advanced
Only run when
The action can be triggered only under a specified condition. Configure the running condition of an event handler in Only run when option, and then the event handler runs only when this condition evaluates to true
.
Debounce and throttle
Debounce and Throttle reduce the frequency of triggering the action.
Debounce
Debounce delays an action. Once a debounce time is set, the action will not be executed immediately following the event until the debounce time passes. If the event occurs again before the time ends, the debounce time will be retimed. For example, an input component triggers a query once the user changes the text. If the query is expensive to run and you don't want to run it after every single character is typed, you can delay the execution of the query by setting the debounce time. Then the query will only run after the user finishes typing.
Throttle
Throttle lets an action happen only once during a specified period of time. By default, every single event triggers an action, but sometimes running an action can be costly. For example, you set an event handle to trigger Run query action to update data in response to the Click event, but you find that query too expensive to run, then you can set a throttle time to let the query run only once within a given time.
Last updated