X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-team.js;h=cb6c96e0fd01a7f81ff11359e42ccb638e01ffcc;hb=5cd7dd53f958bdfbaa1d6977a7b13292b6cab62b;hp=3ab07c76ff2dd66c9e42c70de49e6a93b569e6bb;hpb=276668bcb345b28b69bf1f3d21849735d6923913;p=mkws-moved-to-github.git diff --git a/src/mkws-team.js b/src/mkws-team.js index 3ab07c7..cb6c96e 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -127,6 +127,7 @@ function team($, teamName) { function onShow(data, teamName) { log("show"); m_totalRecordCount = data.merged; + log("found " + m_totalRecordCount + " records"); queue("pager").publish(data); queue("records").publish(data); } @@ -249,7 +250,7 @@ function team($, teamName) { that.resetPage = resetPage; - function newSearch(query, sortOrder, perpage, limit, targets, torusquery) { + function newSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) { log("newSearch: " + query); if (m_config.use_service_proxy && !mkws.authenticated) { @@ -258,14 +259,14 @@ function team($, teamName) { } m_filters = [] - triggerSearch(query, sortOrder, perpage, limit, targets, torusquery); + triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery); switchView('records'); // In case it's configured to start off as hidden m_submitted = true; } that.newSearch = newSearch; - function triggerSearch(query, sortOrder, perpage, limit, targets, torusquery) { + function triggerSearch(query, sortOrder, maxrecs, perpage, limit, targets, torusquery) { resetPage(); queue("navi").publish(); @@ -308,6 +309,9 @@ function team($, teamName) { if (pp2limit) { params.limit = pp2limit; } + if (maxrecs) { + params.maxrecs = maxrecs; + } if (torusquery) { if (!mkws.config.use_service_proxy) alert("can't narrow search by torusquery when Service Proxy is not in use");