when using the below the datatable allows me to delete and shows the row deleted in the page
deleterow: function (rowid, commit) {
commit(true);
},
but when I try to add logic to update the database too it does not work
deleterow: function (rowid, commit) {
// synchronize with the server – send delete command
var data = “delete=true&” + $.param({ CustomerID: rowid });
$.ajax({
dataType: ‘json’,
url: ‘test_data.php’,
cache: false,
data: data,
success: function (data, status, xhr) {
// delete command is executed.
commit(true);
},
error: function (jqXHR, textStatus, errorThrown) {
commit(false);
}
});
},
what am I missing