var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.loaded;
var loaded : any;
The loaded event handler is a function that is called at the end the wijgrid's lifecycle when wijgrid is filled with data and rendered. You can use this event to manipulate the grid html content or to finish a custom load indication.
var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.loaded;
var loaded : any;
// The loaded event in the sample below ensures that whatever is selected on load is cleared $("#element").wijgrid({ loaded: function (e) { $(e.target).wijgrid("selection").clear(); // clear selection } });