hideProgress

hides a progress bar/icon

void hideProgress();

Example

$$("app").hideProgress();

Related samples

Details

In case you know the exact moment of time when a progress bar need to be hidden, specify the time in milliseconds in the showProgress() method.

This progress icon will be hidden after 3 seconds:

$$("app").showProgress({
    delay:3000, // ms
    hide:true
});
See also
Back to top