Get the row data after fnDraw() on bServerside: true

Get the row data after fnDraw() on bServerside: true

ChemonChemon Posts: 19Questions: 0Answers: 0
edited January 2013 in General
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.
This discussion has been closed.