Documentation

hideOverlay

hides the overlay box

void hideOverlay();

See also

Example

webix.ui({
    view:"datatable",
    on:{
        onXLE:function(){
            this.hideOverlay();
        }
    }
});

Back to top