get row cell values after sorting
get row cell values after sorting
I am unable to get a cell value using plain javascript or jQuery, coz my table has some hidden columns. I can use the fnGetData() or fnGetNodes(), but the row array returned by these methods consists of the values before sorting.
var qData = qTable.fnGetData(2)[1];
var rowData = qTable.fnGetNodes(rowNumber);
the above code gives me data that was present in the rows before the column was sorted.
How do i get the data in a given row after the data is sorted in the table ?
var qData = qTable.fnGetData(2)[1];
var rowData = qTable.fnGetNodes(rowNumber);
the above code gives me data that was present in the rows before the column was sorted.
How do i get the data in a given row after the data is sorted in the table ?
This discussion has been closed.