PrimeNG datatable has an option [filter]="true"
which enables an input on column header used to filter data. Additionally the API provides a callback onFilter
fired when filtering data.
Typing into the provided input for filtering data causes the table to run filtering on data in the table. In the callback I reload my data filtered from server which cases the data to be filtered twice. Can I disable the default filtering and at the same time have the input field in column header and onFilter callback available?