showOverlay

shows overlay box over the component

void showOverlay(string message);
messagestringthe text or the html string that will be shown as the overlay message

Example

webix.ui({
    view:"datatable",
    on:{
        onXLS:function(){
            this.showOverlay("Loading...");
        }
    }
});

Related samples

See also
Back to top