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
110
Selection With Group By
posted

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?

Parents
  • 3995
    Verified Answer
    Offline posted

    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.

Reply Children
No Data