Counter
We’ve been working on this article. Please let us know how useful this new version is by voting.
You can use the Counter UI Pattern to display numerical information as a notification. For example, the Badge UI pattern is frequently used to notify users about the number of unread emails, unopened messages, or new tasks they may have.
How to use the Counter UI Pattern
The Counter UI Pattern usually displays dynamic information. In most cases, prior to using this pattern, you will need to retrieve or update the Data that contains the information you want to display onscreen. You do this by using an Action.
The following example demonstrates how you can display the number of registered users on your platform.
-
In Service Studio, in the Toolbox, search for
Counter
.The Counter widget is displayed.
-
From the Toolbox, drag the Counter widget into the Main Content area of your application's screen.
-
From the Element tree, create a Preparation action by right-clicking on your screen, and from the drop-down, select Add Preparation.
This Preparation action executes logic that fetches the data before the screen is displayed.
-
Select the Data tab, and from the Entities tree, navigate to the User entity and drag it onto the Preparation action.
This creates an aggregate that retrieves all of the users on your platform.
-
To reopen your screen, select the Interface tab, and double-click on your screen.
-
Within the Counter widget, right-click in the Text widget (containing the number 26), and select Convert to Expression.
-
In the Expression Editor, enter the following expression and click Done.
GetUsers.Count
Note: You can also add the expression by navigating through the Expression Editor's Scope tree and double-clicking on the Count output parameter.
You have now created an expression that displays the Count property of the Aggregate you added to the Preparation action, which gets the number of users on your platform and displays them in your Counter.
-
From the Properties tab of each of the Counter's widgets, you can customize the Counter's display text and icon. For this example, the display text is changed to Registered Users.
-
Additionally, on the Properties tab, you can customize the Counter's look and feel by setting any of the optional properties, for example, the height and orientation.
After following these steps and publishing the module, you can test the pattern in your app.
Properties
Property | Description |
---|---|
Orientation (Orientation Identifier): Optional | Set the counter orientation. By default the counter is displayed horizontally. Examples
|
Height (Text): Optional | Set the counter height. By default the counter height is 100 (pixel units). |
ExtendedClass (Text): Optional | Add custom style classes to the Counter UI Pattern. You define your custom style classes in your application using CSS. Examples
|