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
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...
Hello Pete,
Thanks for putting effort to reproduce the issue. Is there a fix planned for this bug?