Koha/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js
Nick Clemens 802af9c5c8 Bug 29193: Specify paging as false in circ-patron-search-results.js
This patch removes paging from patron searches using circ-patron-search-results.js

To test:
1 - Browse to a record
2 - Click on the 'Holds' tab
3 - Search for 'a' in patrons
4 - Note you see only 20 results
5 - Sort by name and note that you see different results
6 - Apply patch
7 - Reload page and search
8 - Note you see all results

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-10-12 10:14:35 +02:00

13 lines
377 B
JavaScript

/* global dataTablesDefaults */
$(document).ready(function() {
$(".clickable").click(function() {
window.document.location = $(this).data('url');
});
var table = KohaTable("table_borrowers",
{
"aaSorting": [ 0, "asc" ],
"sDom": "t",
"paging": false
},
columns_settings_borrowers_table, null);
});