apps
2022.4
false
- Getting Started
- Before You Begin
- How To
- Designing your App
- Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Values
- Rule: Start Process
- Rule: Upload File to Storage Bucket
- Rule: Get File From Storage Bucket
- Rule: Create/Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- Function: And, Or, Not
- Function: Concat
- Function: Contains
- Function: Count
- Function: EndsWith
- Function: If
- Function: IsBlank
- Function: Length
- Function: List
- Function: StartsWith
- Function: Sum
- Function: Sort
- Function: Now
- Function: Today
- Function: Time
- Function: Year
- Function: Month
- Function: Day
- Function: Hour
- Function: Minute
- Leveraging RPA in your App
- Leveraging Entities in Your App
- Leveraging Queues in Your App
- Application Lifecycle Management (ALM)
- Basic Troubleshooting Guide
Include Star Ratings
Apps User Guide for Automation Suite
Last updated Apr 19, 2024
Include Star Ratings
You can receive quick and easy feedback on any part of your app by integrating a star rating.
To integrate a 5-star rating input into your app, follow the procedure below.
- Open your already existing application or start a new one.
-
Add 10 star icons to your app, alternating between Star and Star Border icons.
- Create a new app variable called Star rating.
-
Add the following in the Hidden property of each Star icon:
=StarRating<[number]
, where[number]
represents the position of the icon. For example, the first Star icon should be=StarRating<1
, while the second should be=StarRating<2
. -
Add the following in the Hidden property of each Star Border icon:
=StarRating>=[number]
, where[number]
represents the position of the icon. For example, the first Star Border icon should be=StarRating>=1
, while the second should be=StarRating>=2
. -
Configure the Clicked On event for all star icons. Add a Set Values values rule and configure it as follows:
- Add the
StarRating
app variable in the Items to Set field. -
Add
=[number]
in the Value field, where[number]
depends on which icon you are configuring. The first pair of icons (Star and Star Border) will have=1
, while the next pair will have=2
, and so on.
- Add the
- Add a label control next to the last star and rename it to Rating.
-
Add the following in the Text property of the label control:
="Rating:" & StarRating
.