var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.loading;
var loading : any;
The loading event handler is a function that is called at the beginning of the wijgrid's lifecycle. You can use this event to activate a custom load progress indicator.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.loading;
var loading : any;
// Creating an indeterminate progressbar during loading $("#element").wijgrid({ loading: function (e) { $("#progressBar").show().progressbar({ value: false }); } });