X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=js%2Fpz2.js;h=6b767967d75a7ae66418036297a1ad1bdf8093ed;hb=6d01755305a7afba15ed4bc90ac9c149ee7d130e;hp=ca0d28ce3486c137eecfdfbefe2899b3450a97f0;hpb=94cec04d32ffd914ba3659f3c26374da9668d654;p=pazpar2-moved-to-github.git diff --git a/js/pz2.js b/js/pz2.js index ca0d28c..6b76796 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -79,6 +79,7 @@ var pz2 = function ( paramArray ) // where are we? this.currentStart = 0; + // currentNum can be overwritten in show this.currentNum = 20; // last full record retrieved @@ -360,7 +361,7 @@ pz2.prototype = } ); }, - show: function(start, num, sort) + show: function(start, num, sort, query_state) { if( !this.searchStatusOK && this.useSessions ) throw new Error( @@ -379,7 +380,7 @@ pz2.prototype = var context = this; var request = new pzHttpRequest(this.pz2String, this.errorHandler); - request.safeGet( + var requestParameters = { "command": "show", "session": this.sessionID, @@ -389,7 +390,11 @@ pz2.prototype = "block": 1, "type": this.showResponseType, "windowid" : window.name - }, + }; + if (query_state) + requestParameters["query-state"] = query_state; + request.safeGet( + requestParameters, function(data, type) { var show = null; var activeClients = 0;