From ad9484b71d8473863e039471b4eafe116d863657 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 7 Oct 2021 19:34:01 +0000 Subject: [PATCH] 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 Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js b/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js index fa44b3e96a..578a1b8a2d 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js +++ b/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js @@ -7,7 +7,7 @@ $(document).ready(function() { { "aaSorting": [ 0, "asc" ], "sDom": "t", - "iDisplayLength": -1 + "paging": false }, columns_settings_borrowers_table, null); }); -- 2.11.0