Filter tables generated by ng-repeat in version 1.9.4

Filter tables generated by ng-repeat in version 1.9.4

JiglyJigly Posts: 2Questions: 1Answers: 0
edited May 2019 in Free community support

Hello everyone. I'm new to Datables, hope someone can help me with this. So I have a number of tables generated by Angular ng-repeat from json data. All of them have class'results-table'. Then I init datatables like that
$('table.results-table').DataTable({ sPaginationType: 'full_numbers' });
I need to filter all tables according to value set in dropdown and refresh them. But in my tables I don't have column for filtering values. I guess it's posible to add hidden column like
"bSearchable": true, "bVisible": false
and then filter by it. So does anyone have idea how can I implement such filtering and then refresh datatables. When I tried to filter the data used to generate it, the datatables were not updated. Also I need to use 1.9.4 version only.

Answers

This discussion has been closed.