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 196-202
Link Here
|
196 |
dt_overwrite_html_sorting_localeCompare(); |
197 |
dt_overwrite_html_sorting_localeCompare(); |
197 |
|
198 |
|
198 |
$(document).ready(function() { |
199 |
$(document).ready(function() { |
199 |
|
200 |
var column_settings = [% TablesSettings.GetColumns( 'acqui', 'acq_acqui-home', 'accounts', 'json' ) | $raw %]; |
200 |
var oTable = KohaTable("accounts", { |
201 |
var oTable = KohaTable("accounts", { |
201 |
"fnDrawCallback": function ( oSettings ) { |
202 |
"fnDrawCallback": function ( oSettings ) { |
202 |
if ( oSettings.aiDisplay.length == 0 ) |
203 |
if ( oSettings.aiDisplay.length == 0 ) |
Lines 236-242
Link Here
|
236 |
'aaSortingFixed': [[ 1, 'asc' ]], |
237 |
'aaSortingFixed': [[ 1, 'asc' ]], |
237 |
'bPaginate': false, |
238 |
'bPaginate': false, |
238 |
"bAutoWidth": false |
239 |
"bAutoWidth": false |
239 |
}); |
240 |
}, column_settings ); |
240 |
|
241 |
|
241 |
$(oTable).treetable({ |
242 |
$(oTable).treetable({ |
242 |
expandable: true |
243 |
expandable: true |
243 |
- |
|
|