|
Lines 150-160
Link Here
|
| 150 |
[% INCLUDE 'columns_settings.inc' %] |
150 |
[% INCLUDE 'columns_settings.inc' %] |
| 151 |
<script id="js"> |
151 |
<script id="js"> |
| 152 |
$(document).ready(function() { |
152 |
$(document).ready(function() { |
| 153 |
var columns_settings = [% TablesSettings.GetColumns('members', 'checkouthistory', 'checkouthistory-table', 'json') %]; |
153 |
var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') %]; |
| 154 |
var table = KohaTable("table_readingrec", { |
154 |
var table = KohaTable("table_readingrec", { |
| 155 |
"sPaginationType": "full", |
155 |
"sPaginationType": "full", |
| 156 |
"aaSorting": [[10, 'desc']] |
156 |
"aaSorting": [[10, 'desc']] |
| 157 |
}, columns_settings); |
157 |
}, table_settings); |
| 158 |
|
158 |
|
| 159 |
var tabs = $("#tabs").tabs({ |
159 |
var tabs = $("#tabs").tabs({ |
| 160 |
activate: function(e, ui) { |
160 |
activate: function(e, ui) { |
| 161 |
- |
|
|