Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>How about writing a JavaScript script to perform the actions that are already performed when clicking the page number and then simply dump the XML that is returned from the server. I mean try to make the calls to the server as if the site was hosted on your Desktop!</p> <p>The JavaScript function called when you hit a number is <code>paginateList('numberOfPage')</code> where <code>numberOfPage</code> is the page you want to visit.</p> <p>The body of the function is</p> <pre><code>function paginateList(viewIndex) { var productCategoryId = document.pageSelect.category_id.value; var viewSize = document.pageSelect.VIEW_SIZE.value; var min = ""; if(document.pageSelect.min!=null) min = document.pageSelect.min.value; var max = ""; if(document.pageSelect.max!=null) max = document.pageSelect.max.value; var attrName = ""; if(document.pageSelect.attrName!=null) attrName = document.pageSelect.attrName.value; if(attrName==""){ var commaAttr=document.getElementById('commaAttr'); attrName=commaAttr.value; } var limitView = 'true'; var sortSearchPrice = ""; if(document.pageSelect.sortSearchPrice!=null) sortSearchPrice = document.pageSelect.sortSearchPrice.value; var url2="/control/AjaxCategoryDetail?productCategoryId="+productCategoryId+"&amp;category_id="+productCategoryId+"&amp;attrName="+attrName+"&amp;min="+min+"&amp;max="+max+"&amp;sortSearchPrice="+sortSearchPrice+"&amp;VIEW_INDEX="+viewIndex+"&amp;VIEW_SIZE="+viewSize+"&amp;serachupload=&amp;sortupload="; pleaseWait('Y'); jQuery.ajax({url: url2, data: null, type: 'post', async: false, success: function(data) { $('#searchResult').html(data); pleaseWait('N'); }, error: function(data) { alert("Error during product searching"); } }); </code></pre> <p>Use these to get the data from each page recursively.</p> <p>Hope it helps!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload