Get the row data after fnDraw() on bServerside: true
Get the row data after fnDraw() on bServerside: true
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.
[code]
$('#example').on('click', 'tr', function (e) {
e.preventDefault();
oTable.fnDraw();
debug["tr"] = $(this[0]); // i get here the old data.
... ?
[/code]
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.
[code]
$('#example').on('click', 'tr', function (e) {
e.preventDefault();
oTable.fnDraw();
debug["tr"] = $(this[0]); // i get here the old data.
... ?
[/code]
What code i must write to get the new data ?
Thanks in advance, regards.
This discussion has been closed.