jQuery.wijmo.c1gridview Namespace > options type : dataLoaded Event |
var options; // Type: jQuery.wijmo.c1gridview.options // Create a new c1gridview widget $(".selector").c1gridview(options); // Get a previously created c1gridview widget instance var widgetInstance; // Type: jQuery.wijmo.c1gridview widgetInstance = $(".selector").data("wijmo-c1gridview"); // Set dataLoaded event handler function widgetInstance.option("dataLoaded", function (e) { } );
dataLoaded = function ( e : Object ) { };
// Display the number of entries found $("#element").wijgrid({ dataLoaded: function (e) { alert($(this).wijgrid("dataView").count()); } });