|
Lines 130-136
Link Here
|
| 130 |
<table id="claimst"> |
130 |
<table id="claimst"> |
| 131 |
<thead> |
131 |
<thead> |
| 132 |
<tr> |
132 |
<tr> |
| 133 |
<th><input type="checkbox" id="CheckAll"></th> |
133 |
<th class="NoSort noExport"><input type="checkbox" id="CheckAll"></th> |
| 134 |
<th>Vendor</th> |
134 |
<th>Vendor</th> |
| 135 |
<th>Library</th> |
135 |
<th>Library</th> |
| 136 |
<th class="anti-the">Title</th> |
136 |
<th class="anti-the">Title</th> |
|
Lines 180-203
Link Here
|
| 180 |
</tr> |
180 |
</tr> |
| 181 |
[% END # /FOREACH missingissue %] |
181 |
[% END # /FOREACH missingissue %] |
| 182 |
</tbody> |
182 |
</tbody> |
| 183 |
<tfoot> |
|
|
| 184 |
<tr> |
| 185 |
<td></td> |
| 186 |
<td><input type="text" class="filter" data-column_num="1" placeholder="Search vendor" /></td> |
| 187 |
<td><input type="text" class="filter" data-column_num="2" placeholder="Search library" /></td> |
| 188 |
<td><input type="text" class="filter" data-column_num="3" placeholder="Search title" /></td> |
| 189 |
<td><input type="text" class="filter" data-column_num="4" placeholder="Search ISSN" /></td> |
| 190 |
<td><input type="text" class="filter" data-column_num="5" placeholder="Search issue number" /></td> |
| 191 |
<td><input type="text" class="filter" data-column_num="6" placeholder="Search status" /></td> |
| 192 |
<td><input type="text" class="filter" data-column_num="7" placeholder="Search since" /></td> |
| 193 |
<td><input type="text" class="filter" data-column_num="8" placeholder="Search publication date" /></td> |
| 194 |
<td><input type="text" class="filter" data-column_num="9" placeholder="Search claim count" /></td> |
| 195 |
<td><input type="text" class="filter" data-column_num="10" placeholder="Search claim date" /></td> |
| 196 |
[% FOR field IN additional_fields_for_subscription %] |
| 197 |
<td><input type="text" class="filter" data-column_num="[% loop.count + 10 | html %]" placeholder="Search [% field.name | html %]" /></td> |
| 198 |
[% END %] |
| 199 |
</tr> |
| 200 |
</tfoot> |
| 201 |
</table> <!-- /#claimst --> |
183 |
</table> <!-- /#claimst --> |
| 202 |
|
184 |
|
| 203 |
[% IF csv_profiles.count %] |
185 |
[% IF csv_profiles.count %] |
|
Lines 242-258
Link Here
|
| 242 |
[% MACRO jsinclude BLOCK %] |
224 |
[% MACRO jsinclude BLOCK %] |
| 243 |
[% INCLUDE 'calendar.inc' %] |
225 |
[% INCLUDE 'calendar.inc' %] |
| 244 |
[% INCLUDE 'datatables.inc' %] |
226 |
[% INCLUDE 'datatables.inc' %] |
|
|
227 |
[% INCLUDE 'columns_settings.inc' %] |
| 245 |
<script> |
228 |
<script> |
| 246 |
var sTable; |
229 |
var sTable; |
| 247 |
$(document).ready(function() { |
230 |
$(document).ready(function() { |
| 248 |
sTable = $("#claimst").dataTable($.extend(true, {}, dataTablesDefaults, { |
231 |
stable = KohaTable("claimst", { |
| 249 |
"dom": 't', |
232 |
pagingType: "full", |
| 250 |
"columnDefs": [ |
233 |
order: [[2, "asc"]], |
| 251 |
{ "targets": [ 0 ], "orderable": false, "searchable": false }, |
234 |
}, null, true); |
| 252 |
{ "type": "anti-the", "targets": [ 'anti-the'] } |
235 |
|
| 253 |
], |
|
|
| 254 |
"paginate": false |
| 255 |
})); |
| 256 |
$('#supplierid').change(function() { |
236 |
$('#supplierid').change(function() { |
| 257 |
$('#claims').submit(); |
237 |
$('#claims').submit(); |
| 258 |
}); |
238 |
}); |
| 259 |
- |
|
|