Reputation: 592
My requirement is similar to the below link http://www.primefaces.org/showcase/ui/datatableFiltering.jsf but they write filteroptions in the column it self(3 rd column)Manufacturer,i also want to do the same thing but not in the column it outside the table. i.e before the table
Upvotes: 0
Views: 2186
Reputation: 10463
This isn't currently supported out of box with Primefaces dataTables.
The only way to do this would be to implement custom filter fields and custom filtering logic in your managed bean to filter the table. This may be difficult to do if you are implementing dynamic columns or lazy loading functionality in the dataTable.
Upvotes: 2