- 23 Oct 2024
- 1 Minute à lire
- SombreLumière
- PDF
Notifications list popup
- Mis à jour le 23 Oct 2024
- 1 Minute à lire
- SombreLumière
- PDF
A popup with a list of pending notifications is displayed after clicking the notification icon in the application. If there are multiple pending notifications, you can choose the notification you want to open.
<Notifications>
<View />
<NotificationRegistration />
<NotificationsList title="Select notification">
...
</NotificationsList>
</Notifications>
You can customize the following popup items:
The title of the popup (<NotificationsListtitle="Select notification">)
The name of each element, based on its action. Masks for the action name lists the possible masks for the action name.
Mask | Value |
---|---|
%_SerialNumber_% | This is the serial number. |
%_UserIdentifier_% | This is the user identifier. |
%_<custom attribute>_% | The mask is the key of a custom attribute found in the notification. The value will be replaced by the associated value of the custom attribute in the notification. Several custom attributes can be used. |
Example of TransactionDataSigningAction:
<TransactionDataSigningAction id="tds"name="Login request for %_ UserIdentifier_%" ...>
...
</TransactionDataSigningAction>
Example of SecureChannelAction:
<SecureChannelAction id="sa"name="Login request for %_UserIdentifier_%" ...>
...
</SecureChannelAction>