Dwarakanath7 / jquery-datatables-column-filter

Automatically exported from code.google.com/p/jquery-datatables-column-filter
0 stars 0 forks source link

bug at _fnGetColumnValues #141

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
function _fnGetColumnValues is not working correctly when mData is used for 
columns.

Here is fix

instead of:
var sValue = aData[iColumn];

you must use:
var sValue = oSettings.aoColumns[ iColumn ].fnGetData(aData); 

Original issue reported on code.google.com by plandem on 29 Nov 2013 at 4:02