I have a grid with the feature GroupBy enable inside an update panel. With every post back the grid is adding a new ui-iggrid-groupbyarea which I need to clean up myself using:
$('.ui-iggrid-groupbyarea').slice(1).remove();
It looks that the component does not clean up properly before calling iggrid().
Hi,
Are you destroying the grid before re-creating it again?
$("#grid").igGrid("destroy");
Thanks,
Angel
I tried your suggestion of destroying the grid (which I was not doing) before calling igGrid() again, but it have not solved the problem.