Lines 2-7
Link Here
|
2 |
[% USE Asset %] |
2 |
[% USE Asset %] |
3 |
[% USE Price %] |
3 |
[% USE Price %] |
4 |
[% USE Branches %] |
4 |
[% USE Branches %] |
|
|
5 |
[% USE TablesSettings %] |
5 |
[% SET footerjs = 1 %] |
6 |
[% SET footerjs = 1 %] |
6 |
[% INCLUDE 'doc-head-open.inc' %] |
7 |
[% INCLUDE 'doc-head-open.inc' %] |
7 |
<title>Acquisitions › Koha</title> |
8 |
<title>Acquisitions › Koha</title> |
Lines 216-222
Link Here
|
216 |
dt_overwrite_html_sorting_localeCompare(); |
217 |
dt_overwrite_html_sorting_localeCompare(); |
217 |
|
218 |
|
218 |
$(document).ready(function() { |
219 |
$(document).ready(function() { |
219 |
|
220 |
var column_settings = [% TablesSettings.GetColumns( 'acqui', 'acq_acqui-home', 'accounts', 'json' ) | $raw %]; |
220 |
var oTable = KohaTable("accounts", { |
221 |
var oTable = KohaTable("accounts", { |
221 |
"fnDrawCallback": function ( oSettings ) { |
222 |
"fnDrawCallback": function ( oSettings ) { |
222 |
if ( oSettings.aiDisplay.length == 0 ) |
223 |
if ( oSettings.aiDisplay.length == 0 ) |
Lines 256-262
Link Here
|
256 |
'aaSortingFixed': [[ 1, 'asc' ]], |
257 |
'aaSortingFixed': [[ 1, 'asc' ]], |
257 |
'bPaginate': false, |
258 |
'bPaginate': false, |
258 |
"bAutoWidth": false |
259 |
"bAutoWidth": false |
259 |
}); |
260 |
}, column_settings ); |
260 |
|
261 |
|
261 |
$(oTable).treetable({ |
262 |
$(oTable).treetable({ |
262 |
expandable: true |
263 |
expandable: true |
263 |
- |
|
|