0

I have big EditForm with many fields, users scroll it down. Near "Save" button I placed my custom button with some js. I show notifications programmatically (SP.UI.Notify.addNotification, addStatus) but they appear at the top and are not visible to users.

Can I put SharePoint notification in another place?

upd.: Forms are opened "in dialog"

Gennady G
  • 1,623
  • 3
  • 22
  • 35

1 Answers1

4

But you can style it

(from F12 console) Put a Notification on screen to play with it:

 SP.UI.Notify.addNotification('Hello World',true);

Change CSS with higher CSS Specificity,
to fixed it in the top right

.ms-notif-box.ms-notif-box {
   position: fixed;
   top: 15em;
   right: 2em
}
Danny '365CSI' Engelman
  • 21,176
  • 7
  • 35
  • 79