Chris
04/20/2020, 7:54 PMN/ui/message
with a success ribbon at the top. What’s is the standard way of passing a message from a suitelet post event back to a client script? I tried using a url parameter but that’s not a good way to get it done b/c reloading the page will re-display the message.Sandii
04/20/2020, 8:12 PMvar url = window.location.href;
if (url.indexOf('success') > 0) {
var successMessage = message.create({
type: message.Type.CONFIRMATION,
title: 'Success',
message: 'Words words words',
duration: 1000000
});
successMessage.show({ duration: 1000000 });
}
Chris
04/20/2020, 9:30 PMSandii
04/20/2020, 11:33 PMChris
04/22/2020, 7:44 PM