RE: How to Add a Client Script Progress Bar

Hi, does anyone have any tips on how to add a progress bar to a client script? Basically, when a button is clicked on the form, it triggers code that takes a while. I just need a progress bar to indicate the script is still running. It doesn’t even need to show an exact percentage of completion, just something to show it’s running.

mmascitto Beginner Asked on September 23, 2019 in SuiteScript.
Add Comment
3 Answers

It is doable via DOM manipulation by adding some css elements on page load via client script which is ready to execute upon button clicked or something. Make sure that you run it asynchronously for some reason that browser will freeze when processing large data.

Beginner Answered on September 24, 2019.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.