|
Lines 281-286
Link Here
|
| 281 |
$("#accounts").DataTable().draw(); |
281 |
$("#accounts").DataTable().draw(); |
| 282 |
}); |
282 |
}); |
| 283 |
|
283 |
|
|
|
284 |
var table_settings = [% TablesSettings.GetTableSettings( 'acqui', 'histsearch', 'histsearcht', 'json' ) | $raw %]; |
| 285 |
$("#histsearcht").kohaTable( |
| 286 |
{ |
| 287 |
pagingType: "full", |
| 288 |
}, |
| 289 |
table_settings |
| 290 |
); |
| 291 |
|
| 292 |
patron_autocomplete($("#find_patron"), { |
| 293 |
'on-select-add-to': {container: $("#basket_creators"), input_name: 'created_by' }, |
| 294 |
'on-select-callback': function( event, ui ) { |
| 295 |
$("#find_patron").val('').focus(); |
| 296 |
return false; |
| 297 |
} |
| 298 |
|
| 299 |
}); |
| 284 |
}); |
300 |
}); |
| 285 |
</script> |
301 |
</script> |
| 286 |
[% END %] |
302 |
[% END %] |
| 287 |
- |
|
|