I am using jQuery DataTables 1.10 plugin. In the earlier version, (1.9.4 plugin) I was able to get data from table like this:
var iPos = oTable.fnGetPosition( this );
var aData = oTable.fnGetData( iPos );
Now, using the same code, I am getting the error
TypeError: aData is null
How can I use the new functionallity? I tried using oTable.row(iPos).data() but didn't worked for me