Can I show the unfiltered rows and hide the filtered rows?
Can I show the unfiltered rows and hide the filtered rows?
Sounds a bit confusing, but it's just that I want to show two tables on one page. I filter them by Statuses.
Table A should show only "Open" Status
            $(document).ready(function () {
                oTable = $('#LineTablesOpen').dataTable();
                oTable.fnFilter('Open');
            });
And Table B should show all the other Statuses
            $(document).ready(function () {
                oTable = $('#LineTablesOthers').dataTable();
                oTable.fnFilter(' Anything that is not Open');
            });
Is there a way to do it?
This discussion has been closed.