When developing applications with Kuika, you can add multiple actions to a screen or an element. Actions can be triggered based on user interactions, system responses or other events. However, the order of the actions you add is extremely important because the order of actions directly affects how your app works and the user experience. Incorrectly ordered actions can lead to unexpected results, incorrect processing or confusing experiences for the user.
Sequencing of actions is of great importance. In Kuika, actions added to screens or elements during the application development process work in a linear order. That is, the actions you add to a screen or element are listed in the Actions section under the Properties panel in the order of addition (from the first added action to the last added action). The working order of multiple actions you add during the application development process proceeds in this linear order.
According to this order, the first action added will run first, followed by the actions added after it. The order directly affects the interactions between actions. For example, the return values of an action can be used as parameters for subsequent actions.
Since actions work sequentially, the output of one action can be used as input for the next action. This ensures that data flows correctly between actions and that the application works correctly.
Sample Scenario: Add Staff Page
When the Save button is clicked on the Add a Personnel page, the following steps should take place:
Three different actions are used to ensure this sequence of actions:
These actions should work in order:
You can change the order of the actions you add to the screen or element later. You can follow these steps to change the action order:
This will change the order of the actions and allow you to organize the flow of your application in the way you want.