Editor - Get information after editing Cell

Editor - Get information after editing Cell

VascoOliveiraVascoOliveira Posts: 22Questions: 7Answers: 0

In order to add Editing capabilities our Datatables, we started to use the free CellEdit plugin. Unfortunatelly, as the project grows, it no longer offers the type of Editing capabilities that our users need.

As such, i've downloaded the 15 day trial Editor, and i will evaluate it during the next days.

The CellEdit component offered a function callback, that when any cell changed, it allowed to obtain:
- The updated Cell value,
- The Cell old Value,
- The full updated Row

var table = $('#myTable').DataTable();

   function myCallbackFunction (updatedCell, updatedRow, oldValue) {
       console.log("The new value for the cell is: " + updatedCell.data());
       console.log("The values for each cell in that row are: " + updatedRow.data());
   }

   table.MakeCellsEditable({
       "onUpdate": myCallbackFunction
   });

I'm researching the Editor plugin, but wasn't able to understand how can i obtain the same information using the Editor plugin.
How can obtain the same information with the Editor plugin?

This discussion has been closed.