var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.rendering;
var rendering : any;
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.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.rendering;
var rendering : any;
$("#element").wijgrid({ rendering: function (e) { alert("rendering"); } });