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