Has anyone here put together a solution for this t...
# suitescript
a
Has anyone here put together a solution for this that works well with NS that they can share?
b
There are a lot of things that do this, ill use SweetAlert2 since someone asked about it here at some point
Copy code
Swal.fire({
  title: 'Please Wait',
  html: 'Im Processing',
  allowOutsideClick: false,
  onBeforeOpen:function() {
    Swal.showLoading();
  }
});

http.get.promise({
  url: '<http://www.google.com>'
}).then(function(response) {
  Swal.close();
})
👍 1
j
👍 gonna have to check out sweetalert. sounds like a nice way of doing what I was describing in the other thread