Is there any way to populate a row of second grid from first grid, via clicking row of first grid.
I know i can achieve same using drag & drop rows, but i want to do it by clicking rows.
Please suggest.
Perform a postback on double-clicking column in first grid and get the
column values (by iterating through the items) and populate the second
grid from code.
Attach "OnColumnDblClick" event to grid and perform postback as described in the KB Article below. Performing postback from grid client events
Now in the server side, get the values to populate the second grid.