Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The list of parameters which will be send to the server depend on the options which you use. You don't posted <strong>javaScript</strong> code which you use. The names of any parameters you can redefine with respect of <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options" rel="nofollow noreferrer">prmNames</a> option of jqGrid. The following parameters will be always send to the URL used for filling the grid</p> <ul> <li><em>page</em> - the the requested page - default value <code>page</code>, </li> <li><em>rows</em> - the number of rows requested - default value <code>rows</code>, </li> <li><em>sort</em> - the sorting column - default value <code>sidx</code>, </li> <li><em>order</em> - the sort order default value <code>sord</code>, </li> <li><em>search</em> - the search indicator - default value <code>_search</code></li> </ul> <p>If you use <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:advanced_searching" rel="nofollow noreferrer">Advanced Searching dialog</a> or <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:toolbar_searching" rel="nofollow noreferrer">filter toolber</a> with parameter <code>stringResult: true</code> the information about the filter will be sent in additional parameter <code>filters</code> in the format described <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:advanced_searching#options" rel="nofollow noreferrer">here</a>.</p> <p>For example if you set <code>Cache-Control: private, max-age=0</code> in the header of the server response (see <a href="https://stackoverflow.com/a/9269567/315935">here</a> or <a href="https://stackoverflow.com/a/3885956/315935">here</a>) or control the caching with other <code>Cache-Control</code> parameters of the server response you can remove <code>nd</code> parameter which contains the timestamp:</p> <pre><code>prmNames: { nd: null } </code></pre> <p>If you want rename <code>_search</code> parameter to <code>isSearch</code> for example you can use </p> <pre><code>prmNames: { search: 'isSearch' } </code></pre> <p>You can of cause combine all settings which you need:</p> <pre><code>prmNames: { nd: null, search: 'isSearch' } </code></pre>
 

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