Notifications list popup

Prev Next

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.

  1. <Notifications>

  2.  <View />

  3.  <NotificationRegistration />

  4.  <NotificationsList title="Select notification">

  5.   ...

  6.  </NotificationsList>

  7. </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.

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:

  1. <TransactionDataSigningAction id="tds"   name="Login request for %_ UserIdentifier_%" ...>

  2.   ...

  3.  </TransactionDataSigningAction>

Example of SecureChannelAction:

  1. <SecureChannelAction id="sa"   name="Login request for %_UserIdentifier_%" ...>

  2.   ...

  3.  </SecureChannelAction>