Is it possible to display all the search results on a single page instead of paginated?
Announcement
Collapse
No announcement yet.
Disable pagination of results
Collapse
X
-
In the URL you can pass in the number of results to display using the &zoom_per_page=xx parameter.
So for example, this URL would display 99 results.
http://www.wrensoft.com/search.php?z...om_per_page=99
- Likes 1
-
Thanks. Is there any way to pass that through my custom embedded form (extjs application)? Currently I have:
Code:ZoomSearchForm = '<form name="sform" id="sform" action="JavaScript:if(document.sform.zoom_q.value.length>0) {current_results_page=1;viewed_results=[];Kbase._openzoom(document.sform.zoom_q.value)}" method="get"> \ <table> \ <tbody> \ <tr> \ <td>\ <input id="search-textfield-inputEl" type="text" name="zoom_q" value="'+Kbase._empty_search_box_text+'" onclick="this.select()" class="zoom_searchbox" /> \ </td> \ <td> \ <input id="search-Icon-btnEl" style="height: 32px; width: 32px;" type="submit" value="'+Kbase._search_button_text+'" title="Search" class="zoom_button" /> \ </td> \ </tr> \ </tbody> \ </table> \ </form> '; }
Comment
Comment