Problem with checkbox in cellRendered

I have few columns in my grid
The first column is a checkbox
column.cellRenderer = “checkCellRender”
Now I have made this particular coumn non-editable
column.editable=false
because when I was double clicking on it, I used to get true/false which I didnt want
I can still click the checkbox and check/uncheck it
My question is how can I track if this particular checkbox is clicked or not since the original coumn on which it is placed is treated as non-editable now
Thanks