Java script Action

0
Hi Experts, I have one doubt. Is there any option to add Inprogress bar in Nanoflow using java script actions(Is this possible to add HTML and CSS in JS action). Thanks in Advance.
asked
2 answers
2

Try the following:
 

//show progress
var id = mx.ui.showProgress(“Message”, null);

//hide progress
​​​​​​​mx.ui.hideProgress(id);

 

answered
0

Hi Shalini,

What is it that you're trying to achieve? Do you mean you want to add a progress bar to a page by using a Javascript Action? Is there a reason you can't use the progress bar widget for that?

answered