Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
525
rendering event is not fired for Ignite Grid
posted

Hello,

I have hooked the rendering event to the Ignite Grid as following:

$('#myGrid').igGrid({
rendering: function (evt, ui) {
//my logic goes here...
}
});

But, this event is never fired. What could be wrong?

Regards,

Arfan Baig

Parents
No Data
Reply
  • 1145
    Offline posted

    My guess is this is a bug. I'm able to reproduce it with this method as well:

     

    myGrid.bind('iggridrendering', function(e1, ui1) {
    	alert("test");
    	return true;
    });
    

    Rendered, on the other hand, appears to work fine...

Children