Documentation

showOverlay

shows the overlay message over the body of DataTable

void showOverlay(string message);

Parameters

messagestringthe text or html string which will be shown as the overlay message

See also

Example

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

Details

Good for "Loading" and "No data" notifications.

Can be styled with the help of the webix_datatable_overlay css class

Back to top