SYMPTOMS
You want to display more results per page in the webclient than the default allows you to do.
CAUSE
By default, you can select 5, 10, 15, 25, 50 or 100 results.
RESOLUTION
- Modify the searchadv.htm located in the \Inetpub\wwwroot\[webclient name]\html\ folder.
- Add the following line under MaximumDocuments if you wish to set the number to for example 500.
<option value="500" selected> 500 </option>
- The result should be as follows:
<table id="resultscontent" cellspacing="5" style="display:none">
<tr class="field-row">
<th class="ui">Results per page</th>
<td class="ui">
<select name="MaximumDocuments">
<option value="5"> 5 </option>
<option value="10"> 10 </option>
<option value="15"> 15 </option>
<option value="20"> 20 </option>
<option value="25"> 25 </option>
<option value="50"> 50 </option>
<option value="100"> 100 </option>
<option value="500" selected> 500 </option>
</select>
</td>
APPLIES TO6.0 Service Pack 1; 6.0 Service Pack 2; 6.0; 6.1; 6.1 Service Pack 1; 6.1 Service Pack 2; 6.2; 6.2 Service Pack 1; 6.2 Service Pack 2
Comments
0 comments
Article is closed for comments.