I have a checkbox column in my grid and I want to update my database whenever a checkbox is checked. So i bound to the cellclick event, get the row data, and send to server. The problem is that it gets the row data before it takes action on the checkbox. So the value of the checkbox is not correct. First I implemented a work around by just switching the value before i update my database, but then i realized that im binding the cellclick event so if an user clicks in the checkbox cell without actually ‘checking’ the box, your value is wrong again. Is there anyway to bind to the actual ‘checked/unchecked’ event for checkbox columns?