Wijmo UI for the Web
dataLoaded Event
wijmo.grid.wijgrid Namespace > options type : dataLoaded Event
The jQuery.Event object.
The dataLoaded event handler is a function that is called when data is loaded.
Syntax
$(function () {
    // Set dataLoaded event handler function
    $(".selector").wijgrid({
        dataLoaded : function (e) {
     
        }
    });
});
dataLoaded = function ( 
   e : Object
) { };

Parameters

e
The jQuery.Event object.
Example
// Display the number of entries found
$("#element").wijgrid({
    dataLoaded: function (e) {
        alert($(this).wijgrid("dataView").count());
    }
});
Remarks
You can bind to the event either by type or by name. Bind to the event by name: $("#element").wijgrid({ dataLoaded: function (e) { // some code here }}); Bind to the event by type: $("#element").bind("wijgriddataloaded", function (e) { // some code here });
See Also

Reference

options type
wijgrid jQuery Widget