From 6cd4bf86a1cbb82cca9c2fc2ee0feb3dc034fca3 Mon Sep 17 00:00:00 2001 From: phasefx Date: Tue, 28 Apr 2009 02:46:54 +0000 Subject: [PATCH] This is the search interface experiment attached to the record bucket interface. Make it more useful by not capping results to 10 rows git-svn-id: svn://svn.open-ils.org/ILS/trunk@13007 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/cat/record_buckets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/cat/record_buckets.js b/Open-ILS/xul/staff_client/server/cat/record_buckets.js index aeeb3f3e3f..3bf82f95c1 100644 --- a/Open-ILS/xul/staff_client/server/cat/record_buckets.js +++ b/Open-ILS/xul/staff_client/server/cat/record_buckets.js @@ -875,7 +875,7 @@ cat.record_buckets.prototype = { if (y) y.value = $("catStrings").getString('staff.cat.record_buckets.submit.query_status'); obj.network.simple_request( 'FM_BRE_ID_SEARCH_VIA_MULTICLASS_QUERY', - [ {}, x.value, 1 ], + [ { 'limit' : 100 }, x.value, 1 ], function(req) { try { var resp = req.getResultObject(); -- 2.11.0