Wijmo UI for the Web
rendered Event
wijmo.grid.wijgrid Namespace > options type : rendered Event
The jQuery.Event object.
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
$(function () {
    // Set rendered event handler function
    $(".selector").wijgrid({
        rendered : function (e) {
     
        }
    });
});
rendered = function ( 
   e : Object
) { };

Parameters

e
The jQuery.Event object.
Example
$("#element").wijgrid({
    rendered: function (e) {
        alert("rendered");
    }
});
Remarks
You can bind to the event either by type or by name. Bind to the event by name: $("#element").wijgrid({ rendered: function (e) { // some code here }}); Bind to the event by type: $("#element").bind("wijgridrendered", function (e) { // some code here });
See Also

Reference

options type
wijgrid jQuery Widget