Event Trigger in SpreadJs

1.5k Views Asked by At

How could I make click(events) on the basis of cell position in spreadJs. Ok, I know to change certain Css properties and get the cell value. But, I need to trigger click function dynamically.... Say Something like "sheet.getCell(5,5).click()" as in jquery, but I'm unable to do that and stuck. Thanks in advance if any solution or advice.

1

There are 1 best solutions below

0
On

You can bind the Click event at the sheet level and in the event arguments get the row and column identifying the cell you need

CellClick Event

hope this helps.