can we have a check box placed in Web Data grid V14.1 and have any click event on it?
Hello,
You could handle the CellValueChanged client-side event of the WebDataGrid's Editing behavior:
function WebDataGrid1_Editing_CellValueChanged(sender, eventArgs) { //eventArgs.get_cell().get_value() //eventArgs.get_oldValue() }
I have attached a sample that demonstrates this, so please take a look at it.