$(function () { // Set loaded event handler function $(".selector").wijgrid({ loaded : function (e) { } }); });
loaded = function ( e : Object ) { };
Parameters
- e
- The jQuery.Event object.
$(function () { // Set loaded event handler function $(".selector").wijgrid({ loaded : function (e) { } }); });
loaded = function ( e : Object ) { };
// 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 } });