Action Sheet
You can use the Action Sheet UI Patterns to add a menu that slides from the bottom of the screen when triggered by a user action.
How to use the Action Sheet UI Pattern
-
In Service Studio, in the Toolbox, search for
Action Sheet
.The Action Sheet widget is displayed.
-
From the Toolbox, drag the Action Sheet widget into the Main Content area of your application's screen.
By default, the Action Sheet widget contains 5 button placeholders.
-
Add the relevant content to the Button placeholders. In this example, we add buttons that navigate to other pages when clicked.
-
Add a local variable. In this example, we call the variable IsOpened.
-
Select the Action Sheet pattern, and on the Properties tab, set the IsOpen property to the new local variable (in this example, IsOpened).
-
To open the Action Sheet menu, we add a button and on the Properties tab, from the OnClick dropdown, select New Client Action.
-
Add an Assign to the client action and set the IsOpened local variable to True.
-
To close the Action Sheet menu, on the Properties tab, from the Handler dropdrown of the OnClose event, select New Client Action.
-
Add an Assign to the client action and set the IsOpened local variable to False.
After following these steps and publishing the module, you can test the pattern in your app.
Properties
Property | Description |
---|---|
IsOpen(Boolean): Mandatory | Assign a variable open/close the Action Sheet. |
ExtendedClass | Add custom style classes to the Action sheet UI Pattern. You define your custom style classes in your application using CSS. Examples
|