Lines 92-103
Link Here
|
92 |
[% INCLUDE 'datatables.inc' %] |
92 |
[% INCLUDE 'datatables.inc' %] |
93 |
[% INCLUDE 'columns_settings.inc' %] |
93 |
[% INCLUDE 'columns_settings.inc' %] |
94 |
<script> |
94 |
<script> |
95 |
var columns_settings = [% TablesSettings.GetColumns( 'coursereserves', 'courses', 'course_reserves_table', 'json' ) | $raw %]; |
95 |
var table_settings = [% TablesSettings.GetTableSettings( 'coursereserves', 'courses', 'course_reserves_table', 'json' ) | $raw %]; |
96 |
$(document).ready(function() { |
96 |
$(document).ready(function() { |
97 |
var ctable = KohaTable("course_reserves_table", { |
97 |
var ctable = KohaTable("course_reserves_table", { |
98 |
"sPaginationType": "full", |
98 |
"sPaginationType": "full", |
99 |
"bAutoWidth": false |
99 |
"bAutoWidth": false |
100 |
}, columns_settings ); |
100 |
}, table_settings ); |
101 |
}); |
101 |
}); |
102 |
</script> |
102 |
</script> |
103 |
[% END %] |
103 |
[% END %] |
104 |
- |
|
|