You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script>
var table;
$(document).ready(function () {
$.noConflict();
table = $('#data_table').DataTable();
table.MakeCellsEditable({
"onUpdate": myCallbackFunction
});
});
function myCallbackFunction(updatedCell, updatedRow, oldValue) {
console.log("The new value for the cell is: " + updatedCell.data());
console.log("The old value for that cell was: " + oldValue);
console.log("The values for each cell in that row are: " + updatedRow.data());
}
</script>
error message when click out of the input box
The text was updated successfully, but these errors were encountered:
please help, i'm using laravel, I have following the tutorial for celledit, but i have problem and cannot fix it till now, here my code and error
error message when click out of the input box
The text was updated successfully, but these errors were encountered: