ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Punit on May 21, 2022, 11:19:47 am
-
Dear Team,
How to get address cell of excel sheet in columnTemplate event.
Thanks
-
columnTemplate is an object and not an event and it's not possible to get copied cell information.
You can get the content and address of cells affected by paste in beforePaste event though.
https://paramquery.com/pro/api#event-beforePaste
-
We have two grids. We copy from grid one and paste it into the second grid. Now I want to get the address of grid one while copying. beforePaste event is not helpful for me in this case because I want to get the cell address of grid1. Is there any alternate way to achieve this?
-
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();
-
Is there any event that executes before or after copy without any context menu or button click?
-
There is no copy related event currently.
It would be added in upcoming version thanks for your feedback.