Hi all,
I have an event for each row.
When i click on a row i burn an event and i want to get the updated data from that row if the data exists.
What code i must write to get the new data ?
Thanks in advance, regards.
I have an event for each row.
When i click on a row i burn an event and i want to get the updated data from that row if the data exists.
$('#example').on('click', 'tr', function (e) { e.preventDefault(); oTable.fnDraw(); debug["tr"] = $(this[0]); // i get here the old data. ... ?
What code i must write to get the new data ?
Thanks in advance, regards.