Hi
i am fairly new to jquery DataTables.Hope someone can help
What I want to do is change the value of the data before rendering the table, I used this below
"fnRowCallback": function( nRow, aData, iDisplayIndex ) { if ( aData[2] == "0" ){ $('td:eq(1)', nRow).html( '6' );}
But I found that although I change the display of any data with 0 to 6, when i sorted by the column is still sort by the data not the display.
Does anyone know how I can actually change the data in the cell so that when i sort it will correctly sort by 0-6
Please let me know if i am not making myself clear
Thanks