The rendered event handler is a function that is called when the wijgrid is rendered. Normally you do not need to use this event.
Syntax
Javascript (Usage) | |
---|
$(function () {
// Set rendered event handler function
$(".selector").wijgrid({
rendered : function (e) {
}
});
});
|
Javascript (Specification) | |
---|
rendered = function (
: Object
) { };
|
Parameters
- e
- The jQuery.Event object.
Example
$("#element").wijgrid({
rendered: function (e) {
alert("rendered");
}
});
See Also
Reference
options type
wijgrid jQuery Widget