If the user copies cells from grid1 using a context menu or button, then you can save the address of copied cells by calling grid.Selection().address() just before calling copy method.
var S = grid1.Selection();
var address = S.address();//save the address of copied cells
S.copy();