Lines 114-129
Link Here
|
114 |
<caption class="sr-only">Checkout history</caption> |
114 |
<caption class="sr-only">Checkout history</caption> |
115 |
<thead> |
115 |
<thead> |
116 |
<tr> |
116 |
<tr> |
117 |
<th style="display:none;" class="noExport">Type</th> |
117 |
<th data-colname="type" style="display:none;" class="noExport">Type</th> |
118 |
<th class="NoSort noExport"></th> |
118 |
<th class="NoSort noExport"></th> |
119 |
<th class="all anti-the">Title</th> |
119 |
<th data-colname="title" class="all anti-the">Title</th> |
120 |
<th>Author</th> |
120 |
<th data-colname="author">Author</th> |
121 |
<th>Item type</th> |
121 |
<th data-colname="item_type">Item type</th> |
122 |
<th>Call number</th> |
122 |
<th data-colname="callnumber">Call number</th> |
123 |
<th>Vol info</th> |
123 |
<th data-colname="vol_info">Vol info</th> |
124 |
<th>Date</th> |
124 |
<th data-colname="date">Date</th> |
125 |
[% IF Koha.Preference('OPACMySummaryHTML') %] |
125 |
[% IF Koha.Preference('OPACMySummaryHTML') %] |
126 |
<th class="NoSort noExport">Links</th> |
126 |
<th data-colname="links" class="NoSort noExport">Links</th> |
127 |
[% END %] |
127 |
[% END %] |
128 |
<th></th> |
128 |
<th></th> |
129 |
</tr> |
129 |
</tr> |
Lines 234-242
Link Here
|
234 |
$('#sortform').submit(); |
234 |
$('#sortform').submit(); |
235 |
}); |
235 |
}); |
236 |
|
236 |
|
237 |
var columns_settings = []; // Empty because there are no columns we want to be configurable |
237 |
var columns_settings = [% TablesSettings.GetColumns( 'opac', 'patron_details', 'readingrec', 'json') | $raw %]; |
238 |
var table = KohaTable("#readingrec", { |
238 |
var table = KohaTable("#readingrec", { |
239 |
"dom": '<"top"<"table_entries"i><"table_controls"fB>>t', |
239 |
"dom": '<"top"<"table_entries"><"table_controls"fB>>t', |
|
|
240 |
"bKohaColumnsUseNames": true, |
240 |
"autoWidth": false, |
241 |
"autoWidth": false, |
241 |
"language": { |
242 |
"language": { |
242 |
"search": "_INPUT_", |
243 |
"search": "_INPUT_", |
243 |
- |
|
|