wijmo.grid.wijgrid Namespace > options type : loaded Event |
Javascript (Usage) | |
---|---|
$(function () { // Set loaded event handler function $(".selector").wijgrid({ loaded : function (e) { } }); }); |
Javascript (Specification) | |
---|---|
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 } });