|
Lines 133-156
Link Here
|
| 133 |
</tr> |
133 |
</tr> |
| 134 |
[% END # /FOREACH missingissue %] |
134 |
[% END # /FOREACH missingissue %] |
| 135 |
</tbody> |
135 |
</tbody> |
| 136 |
<tfoot> |
|
|
| 137 |
<tr> |
| 138 |
<td></td> |
| 139 |
<td><input type="text" class="filter" data-column_num="1" placeholder="Search vendor" /></td> |
| 140 |
<td><input type="text" class="filter" data-column_num="2" placeholder="Search library" /></td> |
| 141 |
<td><input type="text" class="filter" data-column_num="3" placeholder="Search title" /></td> |
| 142 |
<td><input type="text" class="filter" data-column_num="4" placeholder="Search ISSN" /></td> |
| 143 |
<td><input type="text" class="filter" data-column_num="5" placeholder="Search issue number" /></td> |
| 144 |
<td><input type="text" class="filter" data-column_num="6" placeholder="Search status" /></td> |
| 145 |
<td><input type="text" class="filter" data-column_num="7" placeholder="Search since" /></td> |
| 146 |
<td><input type="text" class="filter" data-column_num="8" placeholder="Search publication date" /></td> |
| 147 |
<td><input type="text" class="filter" data-column_num="9" placeholder="Search claim count" /></td> |
| 148 |
<td><input type="text" class="filter" data-column_num="10" placeholder="Search claim date" /></td> |
| 149 |
[% FOR field IN additional_fields_for_subscription %] |
| 150 |
<td><input type="text" class="filter" data-column_num="[% loop.count + 10 | html %]" placeholder="Search [% field.name | html %]" /></td> |
| 151 |
[% END %] |
| 152 |
</tr> |
| 153 |
</tfoot> |
| 154 |
</table> |
136 |
</table> |
| 155 |
<!-- /#claimst --> |
137 |
<!-- /#claimst --> |
| 156 |
</div> |
138 |
</div> |
|
Lines 238-249
Link Here
|
| 238 |
var sTable; |
220 |
var sTable; |
| 239 |
$(document).ready(function () { |
221 |
$(document).ready(function () { |
| 240 |
enableSelectedActions(); |
222 |
enableSelectedActions(); |
| 241 |
sTable = $("#claimst").kohaTable({ |
223 |
sTable = $("#claimst").kohaTable( |
| 242 |
dom: "t", |
224 |
{ |
| 243 |
order: [[7, "asc"]], |
225 |
dom: "t", |
| 244 |
columnDefs: [{ sortable: false, targets: ["no-sort"] }], |
226 |
order: [[7, "asc"]], |
| 245 |
paging: false, |
227 |
columnDefs: [{ sortable: false, targets: ["no-sort"] }], |
| 246 |
}); |
228 |
paging: false, |
|
|
229 |
}, |
| 230 |
null, |
| 231 |
true |
| 232 |
); |
| 247 |
|
233 |
|
| 248 |
// Checkboxes : Select All / None |
234 |
// Checkboxes : Select All / None |
| 249 |
$("span.checkall").html('<input type="checkbox" name="CheckAll"> ' + _("Check all") + "</input>"); |
235 |
$("span.checkall").html('<input type="checkbox" name="CheckAll"> ' + _("Check all") + "</input>"); |
| 250 |
- |
|
|