displays a progress bar/ progress icon
config | object | configuration of a progress bar (icon) |
$$("data").showProgress({
type:"bottom",
delay:delay,
hide:true
});
Possible type values are:
Icon types are taken from FontAwesome collection.
If configuration is not passed, the default one will be used, namely:
{
position:0,
delay: 2000,
type:"icon",
icon:"refresh",
hide:false
}
If the above mentioned values are not redefined by a custom configuration, they will be applied.
Back to top