Get cell value on checkbox change event
Get cell value on checkbox change event
I have thi column
"aTargets": [6],
//"mData": "attivo", booleano
"mRender": function (index, store, full) {
if (index == "1") {
return '';
} else {
return '';
}
i would like to raise an event when the user change checked state, and retrieve column 1 value of the current row to call a server side method to update DB.
how can i make this?
Thank you
"aTargets": [6],
//"mData": "attivo", booleano
"mRender": function (index, store, full) {
if (index == "1") {
return '';
} else {
return '';
}
i would like to raise an event when the user change checked state, and retrieve column 1 value of the current row to call a server side method to update DB.
how can i make this?
Thank you
This discussion has been closed.