|
Lines 966-972
Link Here
|
| 966 |
}); |
966 |
}); |
| 967 |
|
967 |
|
| 968 |
// Initialise the datatable |
968 |
// Initialise the datatable |
| 969 |
var illTable = KohaTable("ill-requests", { |
969 |
table = KohaTable("ill-requests", { |
| 970 |
'aoColumnDefs': [ |
970 |
'aoColumnDefs': [ |
| 971 |
{ // Last column shouldn't be sortable or searchable |
971 |
{ // Last column shouldn't be sortable or searchable |
| 972 |
'aTargets': [ 'actions' ], |
972 |
'aTargets': [ 'actions' ], |
|
Lines 1062-1068
Link Here
|
| 1062 |
// ones |
1062 |
// ones |
| 1063 |
$('#illfilter_form').submit(function(event) { |
1063 |
$('#illfilter_form').submit(function(event) { |
| 1064 |
event.preventDefault(); |
1064 |
event.preventDefault(); |
| 1065 |
table.search('').columns().search(''); |
1065 |
table.api().search('').columns().search(''); |
| 1066 |
for (var active in activeFilters) { |
1066 |
for (var active in activeFilters) { |
| 1067 |
if (activeFilters.hasOwnProperty(active)) { |
1067 |
if (activeFilters.hasOwnProperty(active)) { |
| 1068 |
activeFilters[active](); |
1068 |
activeFilters[active](); |
| 1069 |
- |
|
|