You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
This may be more of a general datatables question but I am not finding any resolution in the datatables docs. I am not having any luck getting individual column filtering to work.
This works to filter the whole table...
$('select#association').change( function() { oTable.fnFilter( $(this).val()); } );
But this does not work to filter only my 2nd column...
$('select#association').change( function() { oTable.fnFilter( $(this).val(), 1); } );
The text was updated successfully, but these errors were encountered:
Following up on the individual column filtering, I had to add any $_GET['sSearch_colnum'] to my paginate conditions. Any thoughts on adding support for individual column filtering in the component? Below is how datatables implemented it in straight PHP...
This may be more of a general datatables question but I am not finding any resolution in the datatables docs. I am not having any luck getting individual column filtering to work.
This works to filter the whole table...
$('select#association').change( function() { oTable.fnFilter( $(this).val()); } );
But this does not work to filter only my 2nd column...
$('select#association').change( function() { oTable.fnFilter( $(this).val(), 1); } );
The text was updated successfully, but these errors were encountered: