<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: Paging</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/paging-1/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p14203</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p14203</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The total pages should be send from the server. Please do not mix total with total records.</p>
<p>Also you can look here</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....eving_data</a></p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 24 Jan 2010 18:06:22 +0200</pubDate>
        </item>
        <item>
        	<title>Kris-I on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p14194</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p14194</guid>
        	        	<description><![CDATA[<p>Server side. ... only ? I don&#39;t thik so</p>
<p>I have 5 records, when I set the number to display to 2 ... I see "Page 1 on (1)" the (1) is not server side.</p>
<p>Here the value post to the server side :</p>
<table class="netInfoPostParamsTable " border="0" cellspacing="0" cellpadding="0">
<tbody class=" ">
<tr class=" ">
<td class="netInfoParamName "><em><span class=" ">_search</span></em></td>
<td class="netInfoParamValue "><em><code>false</code></em></td>
</tr>
<tr class=" ">
<td class="netInfoParamName "><em><span class=" ">nd</span></em></td>
<td class="netInfoParamValue "><em><code>1264323687068</code></em></td>
</tr>
<tr class=" ">
<td class="netInfoParamName "><em><span class=" ">page</span></em></td>
<td class="netInfoParamValue "><em><code>1</code></em></td>
</tr>
<tr class=" ">
<td class="netInfoParamName "><em><span class=" ">rows</span></em></td>
<td class="netInfoParamValue "><em><code>2</code></em></td>
</tr>
<tr class=" ">
<td class="netInfoParamName "><em><span class=" ">sidx</span></em></td>
<td class="netInfoParamValue "><em><code>FirstName</code></em></td>
</tr>
<tr class=" ">
<td class="netInfoParamName "><em><span class=" ">sord</span></em></td>
<td class="netInfoParamValue "><em><code>desc</code></em></td>
</tr>
</tbody>
</table>
<p>How to total page is set ?</p>
<p>Thanks,</p>
]]></description>
        	        	<pubDate>Sun, 24 Jan 2010 11:07:38 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p14150</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p14150</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I think that the problem here is your server side code. Please check it again. If you are in PHP please look in the demo files how this can be done.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 22 Jan 2010 13:04:16 +0200</pubDate>
        </item>
        <item>
        	<title>Kris-I on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p14046</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p14046</guid>
        	        	<description><![CDATA[<p>Here the code :</p>
</p>
<p>jQuery(document).ready(function() {<br />&#160;&#160;&#160; jQuery("#gridEmpoyee").jqGrid({<br />&#160;&#160;&#160; &#160;&#160;&#160; url: &#39;/Employee/ListToGrid/&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;json&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; mtype: &#39;POST&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; height: 255,<br />&#160;&#160;&#160; &#160;&#160;&#160; width: 600,<br />&#160;&#160;&#160; &#160;&#160;&#160; colNames: [&#39;Id&#39;, &#39;Login&#39;, &#39;LastName&#39;, &#39;FirstName&#39;, &#39;Actif&#39;],<br />&#160;&#160;&#160; &#160;&#160;&#160; colModel: [<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; { name: &#39;id&#39;, index: &#39;Id&#39;, width: 0, hidden: true },<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; { name: &#39;login&#39;, index: &#39;Login&#39;, width: 100, resizable: true, editable: false },<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; { name: &#39;firstName&#39;, index: &#39;FirstName&#39;, width: 150, resizable: true, editable: true },<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; { name: &#39;lastName&#39;, index: &#39;LastName&#39;, width: 150, resizable: true, editable: true },<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; { name: &#39;isActive&#39;, index: &#39;IsACtive&#39;, width: 60, editable: true, edittype: "checkbox", editoptions: { value: "True:False"} },<br />&#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; pager: jQuery(&#39;#sandgridp&#39;),<br />&#160;&#160;&#160; &#160;&#160;&#160; rowNum: 10,<br />&#160;&#160;&#160; &#160;&#160;&#160; onSelectRow: function(id) {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; employeeId = id;<br />&#160;&#160;&#160; &#160;&#160;&#160; },<br />&#160;&#160;&#160; &#160;&#160;&#160; rowList: [2, 5, 10, 20, 50],<br />&#160;&#160;&#160; &#160;&#160;&#160; sortname: &#39;FirstName&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; sortorder: "desc",<br />&#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Liste des employ&#233;s&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; editurl: "/Employee/Update/"<br />&#160;&#160;&#160; });<br />});<br />jQuery("#gridEmpoyee").jqGrid(&#39;navGrid&#39;, "#sandgridp", { edit: false, add: false, del: false, refresh: false, search: false });<br />jQuery("#gridEmpoyee").jqGrid(&#39;gridResize&#39;, { minWidth: 600, maxWidth: 800, minHeight: 255, maxHeight: 350 });</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 12:19:21 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p14038</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p14038</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Nobody will help if the is a no code.</p>
<p>Try to check your server side code.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 19 Jan 2010 11:37:24 +0200</pubDate>
        </item>
        <item>
        	<title>Kris-I on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p13983</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p13983</guid>
        	        	<description><![CDATA[<p>Anybody ?</p>
]]></description>
        	        	<pubDate>Sun, 17 Jan 2010 11:06:22 +0200</pubDate>
        </item>
        <item>
        	<title>Kris-I on Paging</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/paging-1#p13938</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/paging-1#p13938</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I have a grid, limited by default at 10 record by page. When I have more than 10 record I still have page "1 of 1 page". If I switch to 20 records by page I see all my records.</p>
<p>Could you tell me what I missed ?</p>
<p>Thanks,</p>
]]></description>
        	        	<pubDate>Fri, 15 Jan 2010 15:15:45 +0200</pubDate>
        </item>
</channel>
</rss>