Lines 5-10
Link Here
|
5 |
[% USE Branches %] |
5 |
[% USE Branches %] |
6 |
[% USE KohaDates %] |
6 |
[% USE KohaDates %] |
7 |
[% PROCESS 'i18n.inc' %] |
7 |
[% PROCESS 'i18n.inc' %] |
|
|
8 |
[% USE TablesSettings %] |
8 |
[% SET footerjs = 1 %] |
9 |
[% SET footerjs = 1 %] |
9 |
[% INCLUDE 'doc-head-open.inc' %] |
10 |
[% INCLUDE 'doc-head-open.inc' %] |
10 |
<title |
11 |
<title |
Lines 220-234
Link Here
|
220 |
var sTable; |
221 |
var sTable; |
221 |
$(document).ready(function () { |
222 |
$(document).ready(function () { |
222 |
enableSelectedActions(); |
223 |
enableSelectedActions(); |
|
|
224 |
var table_settings = [% TablesSettings.GetTableSettings( "serials", "claims", "claimst", "json" ) | $raw %]; |
223 |
sTable = $("#claimst").kohaTable( |
225 |
sTable = $("#claimst").kohaTable( |
224 |
{ |
226 |
{ |
225 |
dom: "t", |
227 |
autowidth: false, |
226 |
order: [[7, "asc"]], |
228 |
order: [[7, "asc"]], |
227 |
paging: false, |
229 |
paging: false, |
228 |
}, |
230 |
orderCellsTop: true |
229 |
null, |
231 |
}, table_settings, 1); |
230 |
true |
|
|
231 |
); |
232 |
|
232 |
|
233 |
// Checkboxes : Select All / None |
233 |
// Checkboxes : Select All / None |
234 |
$("span.checkall").html('<input type="checkbox" name="CheckAll"> ' + _("Check all") + "</input>"); |
234 |
$("span.checkall").html('<input type="checkbox" name="CheckAll"> ' + _("Check all") + "</input>"); |
235 |
- |
|
|