Button control to trigger actions or events
The Action Button control lets you trigger specific events like - Navigating to a screen, sending the email, etc. For example, we can configure an action button to call a specific number or send an SMS.
Properties
UI Properties
-
Label : Label is the text that is displayed above the Action Button and helps the user to understand what the Action Button is for.
-
Properties : These properties help you customize the Label by changing the text size, weight( Light, Normal, Bold, Extra Bold, X Extra Bold), alignment (Left, Center, Right, Justified) and color of the label.
-
Type : The Type field is automatically generated depending upon the type of control used. In this case, it is a “Button1” type.
-
Unique Name : A Unique Name is used to uniquely identify a control in your App. Every control that is added on the screen gets an auto-generated Unique Name on the basis of the Label name given to the control.
-
Tooltip: This allows you to add the Tooltip text that would provide a hint to the user for providing input. The Tooltip icon would be visible if you switch on the Show tooltip icon toggle property available below.
-
Description: Is the description that you can add for your controls. The Description would only be visible if you switch on the Show Description toggle property available below.
-
Hidden : The hidden option helps you to hide the button from the user. This might help if you want to show certain buttons only when a specific condition is met/not met.
-
Caching : When the caching option is selected and if a LOOKUP formula is applied to this control, the state that the LOOKUP returns will be cached and the user will be able to see this state in the Action Button even when he accesses the microapp later with no connectivity. This option is required when you want your app to be accessible in offline mode as well and getting the latest data from the sheets always is not critical.
Hide Label : This option hides the label of the field from the view. -
Trigger dependents: When you Disable Trigger Dependents, it helps you to reduce or optimize the unnecessary evaluation of the dependent control’s formula. For a detailed explanation refer to this article here .
By default Trigger dependents is enabled. However, in complex apps by switching it off, you would limit the evaluation in the dependent control and in turn ensure quicker response times. -
Hide on desktop: This option hides the selected control in the desktop view.
-
Hide on Mobile : This option hides the selected control in the mobile view.
-
Dynamic Height : This option dynamically increases /decreases the height of the text control based on the given content.
-
Maintain space when hidden : This option maintains the specified space between controls when a particular control is hidden. When a control is hidden the space is maintained in the preceeding control depending on the space the previous control has occupied.
Note: Dynamic height, Hide on Mobile, Hide on Desktop, Maintain space when hidden properties are used in Freeflow Editor only.
Properties
-
Text : This option lets you change the text that will be displayed on the Action Button.
-
Show Icon: If you wish to show icon enable show icon. Click on arrow there are icons available. Select the icon as per your requirement.
-
Font Properties : The font properties let you customize the text that is displayed on the Action Button. You can change the Text Size, Weight (Light, Medium, Bold, Extra Bold or X Extra Bold), Alignment (Left, Center, Right or Justified), and Color.
-
Background Properties : Background properties are used to customize the background of the Action Button. You can set the Color, Style (Outline or Filled), and Roundness of the button.
How to Use an Action Button?
Start with selecting the Action Button from the featured section of the Controls Menu.
The Action Button will then appear on the screen in the builder, you can then set all the above properties as per your requirements.
Once you add the Action button on the app, click Action icon.
You would get the button_click(click) actions. Click button_click(click) which opens the Action flow. Here you can define the Action that you want to perform on the click of the Action button.
For a detailed explanation on using the Action Flows you can refer the article here.
You can use the Data option to bind data to the Action Button.
There are different ways in which you can bind data to the Action field.
-
Static Data: This is the data that does not change over the period of time. Such data is used to assign default values in fields in your application. The static data can be based on the data type i.e. Numeric, Text, and List type data.
-
Sheets : This allows you to fetch data from a sheet and display it in the fields. Select your sheet from the list and then select the columns to be used. You can also add filters and sort data.
-
Controls: This allows you to get data from one of the App controls.
-
Variables: This assigns the value of the variables defined in the app.
-
LoggedIn User: You can display the properties related to the LoggedIn User like username, usermail, Admin, status, and so on. You can select a single property only . Select column and click Save .
-
API: This allows you to add an API and select the values returned by the respective API. You can select multiple keys to display values.
-
Custom Formula: This can be used to apply formulas and store the output of those formulas. You can learn more about formulas here.