wijmo.grid.wijgrid Namespace > options type : loading Event |
Javascript (Usage) | |
---|---|
$(function () { // Set loading event handler function $(".selector").wijgrid({ loading : function (e) { } }); }); |
Javascript (Specification) | |
---|---|
loading = function ( e : Object ) { }; |
// Creating an indeterminate progressbar during loading $("#element").wijgrid({ loading: function (e) { $("#progressBar").show().progressbar({ value: false }); } });