Icon Badge
You can use the Icon Badge UI Pattern to display numerical information as a notification. For example, the Icon 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 Icon Badge UI Pattern
The following example demonstrates how you can display the number of registered users on your platform.
-
In Service Studio, in the Toolbox, search for
Icon Badge
.The Icon Badge widget is displayed.
-
From the Toolbox, drag the Icon Badge widget into the Main Content area of your application's screen.
By default, the Icon Badge contains an Icon placeholder with a pre existing icon.
-
To create an aggregate (in this example to retrieve all the users on the platform), right-click the screen name and select Fetch Data from Database.
-
To add a database entity, click the screen, and from the Select Source pop-up, select the relevant entity and click OK. In this example, we select the User entity.
The aggregate GetUsers is created.
-
To reopen your screen, select the Interface tab, and double-click on your screen name.
-
Select the Icon Badge widget, and on the Properties tab, from the Number drop-down, select Expression Editor, and in the Expression Editor enter the following expression and click Done.
GetUsers.Count
The Number property is now set to display the Count property of the Aggregate you created earlier, which gets and displays the number of users on your platform.
-
On the Properties tab, you can customize the Icon Badge's look and feel by setting any of the optional properties, for example, the color.
After following these steps and publishing the module, you can test the pattern in your app.
Properties
Property | Description |
---|---|
Number (Integer): Mandatory | The number that appears inside the badge. Set this to a data source that contains the value you want to display. Examples
|
Color (Color Identifier): Optional | Set the icon badge's background color. Red, orange, yellow, lime, green, blue, violet, and pink are just some of predefined colors available for the icon badge. Examples
|
IsLight (Boolean): Optional | Specify the badge's background and text color. Examples
|
ExtendedClass (Text):Optional | Add custom style classes to the Icon Badge UI Pattern.You define your custom style classes in your application using CSS. Examples
|