Sequencing and Sorting in Actions

In Kuika, actions added to screens or elements work in a linear order. This order is listed in the Actions section of the Properties panel, in the order they were added. The first added action runs first, and the actions added after it run in sequence.

  • The output of one action can be used as input for the next action. This feature guarantees correct data flow and error-free operation of the application.

Sample Scenario: Add Staff Page

When the Save button is clicked on the Add a Staff page, the following steps are performed:

  1. Save User: Performs the process of adding staff.
  2. Notify: Notifies that the process has been completed successfully.
  3. Go Back: Redirects the user to the Staff Listing screen.

Save User action works first. After the process is completed, the Notify action is triggered. Finally, the Go Back action is activated, redirecting the user to the listing screen.

Changing Action Sequence

  1. Go to the Properties panel of the relevant screen or element.
  2. In the Actions section you can see the added actions in order.
  3. Select the action whose order you want to change, hold and drag it with the mouse to the desired position.

This allows you to organize the flow of the application by changing the order of actions.