entity framework - How to create success notification in apache ofbiz -


is there way create success notification whenever create information via form in ofbiz. example: want have success notification when product created

enter image description here

thanks in advance.

you can send notification this, first have ask user if wants allow notifications.

notification.requestpermission(function() {     if (notification.permission === 'granted') {         // user approved.         // use of new notification(...) syntax successful         new notification('success', { body: 'success!' });     } else if (notification.permission === 'denied') {         // user denied.     } else { // notification.permission === 'default'         // user didn’t make decision.         // can’t send notifications until grant permission.     } }); 

Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -