|
Lines 236-246
Link Here
|
| 236 |
$(document).ready(function() { |
236 |
$(document).ready(function() { |
| 237 |
$('#patrons_to_add_fieldset').hide(); |
237 |
$('#patrons_to_add_fieldset').hide(); |
| 238 |
|
238 |
|
| 239 |
var columns_settings_table = [% TablesSettings.GetColumns('members', 'patron-lists', 'patron-list-table', 'json') | $raw %] |
239 |
var table_settings = [% TablesSettings.GetTableSettings('members', 'patron-lists', 'patron-list-table', 'json') | $raw %] |
| 240 |
KohaTable('patron-list-table', { |
240 |
KohaTable('patron-list-table', { |
| 241 |
"order": [[ 3, "asc" ]], |
|
|
| 242 |
"sPaginationType": "full" |
241 |
"sPaginationType": "full" |
| 243 |
}, columns_settings_table); |
242 |
}, table_settings); |
| 244 |
|
243 |
|
| 245 |
patron_autocomplete({ |
244 |
patron_autocomplete({ |
| 246 |
patron_container: $("#patrons_to_add"), |
245 |
patron_container: $("#patrons_to_add"), |
| 247 |
- |
|
|