Lines 779-785
Link Here
|
779 |
table_dt.column([% loop.count - 1 %]).search(library_id ? '^'+library_id+'$' : ''); |
779 |
table_dt.column([% loop.count - 1 %]).search(library_id ? '^'+library_id+'$' : ''); |
780 |
[% CASE 'category' %] |
780 |
[% CASE 'category' %] |
781 |
let category_id = $("#categorycode_filter").val() || ""; |
781 |
let category_id = $("#categorycode_filter").val() || ""; |
782 |
patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id); |
782 |
patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id.toLowerCase()); |
783 |
table_dt.column([% loop.count - 1 %]).search(category_id ? '^'+category_id+'$' : ''); |
783 |
table_dt.column([% loop.count - 1 %]).search(category_id ? '^'+category_id+'$' : ''); |
784 |
[% END %] |
784 |
[% END %] |
785 |
[% END %] |
785 |
[% END %] |
786 |
- |
|
|