jQuery.wijmo.wijgrid Namespace > options type : loaded Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.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 } });