[open-ils-commits] r13007 - trunk/Open-ILS/xul/staff_client/server/cat (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Apr 27 22:46:56 EDT 2009
Author: phasefx
Date: 2009-04-27 22:46:54 -0400 (Mon, 27 Apr 2009)
New Revision: 13007
Modified:
trunk/Open-ILS/xul/staff_client/server/cat/record_buckets.js
Log:
This is the search interface experiment attached to the record bucket interface. Make it more useful by not capping results to 10 rows
Modified: trunk/Open-ILS/xul/staff_client/server/cat/record_buckets.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/record_buckets.js 2009-04-28 02:28:47 UTC (rev 13006)
+++ trunk/Open-ILS/xul/staff_client/server/cat/record_buckets.js 2009-04-28 02:46:54 UTC (rev 13007)
@@ -875,7 +875,7 @@
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();
More information about the open-ils-commits
mailing list