Webportal v1

embedded apps

API Reference - WebPortal.notification.evt.close

WebPortal.notification.evt.close

Type Event

WebPortal.notification.evt.close

Description This event is triggered when the user clicks on the Delete Button of a Notification Center (NC) Notification. Check out the dedicated tutorial.
Type event message.
Output Data Type Description
type String WebPortal.notification.evt.close
notifId String Id of the notification

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
window.addEventListener("message", function(event){
  
  if (typeof event.data !== 'undefined' && typeof event.data.type !== 'undefined' ){

    var data = event.data;
    var type = event.data.type;

    switch(type){
      
      // When the user delete a NC Notification
      case "WebPortal.notification.evt.close":
        console.log("[WebPortal Notification] The user selected the `delete` button of the NC notification");
        console.log("[WebPortal Notification] ID:" + data.notifId +);
        break;

    }
  }
});

See Also