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
180
Drag & Drop rows in child bands
posted

Is it possible to use the Drag & Drop framework to move rows around (for sorting, basically) in the child bands of a WHDG? I have it working in the parent grid, but am not sure how to get it going in the children.

Thanks

Parents
  • 37874
    Verified Answer
    posted

    Hi cwaldmann,

     

    It has been some time since your post but in case that you still need assistance I will be happy to help.

    If you have achieved parent band drag and drop functionality, implementing this for the child bands should be a matter of accessing the child rows through javascript. This can be done using something similar to:

     

    var grid = $find("WebHierarchicalDataGrid1");

    var childBand = grid.get_gridView().get_rows().get_row(0).get_rowIslands(0)[0].get_rows();

     

     

    If you have any questions or need more help please feel free to show me the code you are using for the desired functionality.

Reply Children