Hi,
Im using onCellUpdate to capture client-side events.
The problem occours when i copy-paste a column/row of values. The event is called but the functions getActiveRow() and getActiveColumn() reffer always to the first cell (the cell that has the focus).
Here is my code:
function onCellUpdate(cell){
if(document.getElementById ("changedCells") != null)
document.getElementById ("changedCells").value +=this.getActiveColumn() +"&"+this.getActiveRow() +"&"+ this.getCellValueByCell(cell)+";";
}
Thank you,
Paulo