showProgress

displays a progress bar/icon

void showProgress( [object config] );
configobjectconfiguration of a progress bar/icon

Example

$$("data").showProgress({
    type:"bottom",
    delay:delay,
    hide:true
});

Related samples

Details

Progress Types

Possible type values are:

  • top - draw a bar above the view/application
  • bottom - draws a bar below a view/application
  • icon - draw an icon in the middle of a view/application

Icon types are taken from the default list of icons, included in Webix. For the Material and Mini skins, these are Material design icons, for the rest the icons are taken from Font Awesome. For more details about icons in Webix, read the Icons with UI Widgets article.

Defaults

If configuration is not passed, the default one will be used, namely:

{
    position:0,
    delay: 2000,
    type:"icon",
    icon:"wxi-sync",
    hide:false
}

If the above mentioned values are not redefined by a custom configuration, they will be applied.

See also
Back to top