I have a iggrid with the group by feature and the selection features enabled. I am running into an issue with I expand the group the iggridselectionrowselectionchanged event fires. Is there a way to make this event not fire when the grouped row is selected or expanded?
Thank you.
Hello Arden,
Sure you can bind to iggridselectionrowselectionchanging and return false if group row is about to be selected.
rowSelectionChanging: function(e, ui) { if(ui.row.element.is(".ui-iggrid-groupedrow")) { return false; }
}
Here's a jsfiddle to demonstrate it.