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
865
Expanding/Collapsing Rows
posted

Is there any way rows can be expanded/collapsed at the parent level using a hyperlink instead of an expand/collapse image?

Parents
No Data
Reply
  • 5739
    posted

    Hi,

    Here's some code for the client side expansion: 

    var grid = ig_controls["WHDG"].get_gridView();

     

    var gridrow = grid.get_behaviors().get_activation().get_activeCell().get_row();

     

    gridrow.get_grid().get_rows().get_row(gridrow._index).set_expanded(true);

     Ed

Children
No Data