I have two grids, one on the left and one on the right. I want to highlight multiple rows in the grid on the left, click a button that says "move", and see the rows added to the grid on the right.
The grid on the left is loaded from an action method, via Ajax. The grid on the right gets data from a JavaScript array of objects.
The part I'm stuck on:
After user clicks the "move" button, how do I get the highlighted rows and loop through them so I can add them to the JavaScript array of objects?
Thanks,
Mike