Filter Rows on cell value
Filter Rows on cell value
Reyske
Posts: 4Questions: 2Answers: 0
Hi,
I want to hide the rows that contain a specific value in a hidden column.
For example:
Timestamp | Value | ID (hidden) ------------------------------------------- 123 | 5 | 16 124 | 6 | 17
I want to filter out the row with value 6.
If i use
$.fn.dataTableExt.afnFiltering.push(
function( oSettings, aData, iDataIndex ) {
console.log(aData);
return true;
}
);
The hidden column value is always "", so I can't filter the rows..
Is there a solution to this problem ?
Thanks !
This discussion has been closed.
Answers
I accidentaly set "searchable" to false :)
My bad !