Pro Version User: Need help on Checkbox Click Event

Hi,
I’m a pro-version user of the API. I’ve a requirement where, on click of a checkbox, I need to get the value of the checkbox and its row-index id, so that I can pick up another cell value in the same row.
Kindly let me know how can I achieve this.

Regards

You can use code like next

grid.attachEvent("onCheck", function(id, index, value){ if (value) //if checkbox is checked alert(this.cells(id,2).getValue()); //value from second column on the same row })