<?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: tableToGrid pager rowNum</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum</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/tabletogrid-pager-rownum/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>huntzrlz on tableToGrid pager rowNum</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p22704</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p22704</guid>
        	        	<description><![CDATA[<p>Some another user of forum discovered a workaround:</p>
</p>
<p><strong>jQuery("#grid").jqGrid(&#39;setGridParam&#39;, {page: 1}).trigger("reloadGrid");</strong></p>
]]></description>
        	        	<pubDate>Fri, 08 Apr 2011 18:32:47 +0300</pubDate>
        </item>
        <item>
        	<title>chiragvels on tableToGrid pager rowNum</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p19339</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p19339</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>pager is not working with tableToGrid.</p>
<p>i can use pager when using  tableToGrid, the pager is shown but it dosen&#39;t work. It  displays allways 0 pages  available and the grid have a scroll to show  all records at the same  time whatever it&#39;s number is.</p>
</p>
<p>Thanks,</p>
]]></description>
        	        	<pubDate>Thu, 26 Aug 2010 18:30:19 +0300</pubDate>
        </item>
        <item>
        	<title>raul.arabaolaza on tableToGrid pager rowNum</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p15562</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p15562</guid>
        	        	<description><![CDATA[<p>Thanks for the answer Tony, and sorry for not read more carrefully the docs before 🙁 .</p>
</p>
<p>Regards, Ra&#250;l</p>
]]></description>
        	        	<pubDate>Tue, 09 Mar 2010 23:38:54 +0200</pubDate>
        </item>
        <item>
        	<title>tony on tableToGrid pager rowNum</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p15535</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p15535</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The problem is discussed well in this forum. Local paginationis not supported. Will be in the upcomming 3.7 release.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 09 Mar 2010 19:44:11 +0200</pubDate>
        </item>
        <item>
        	<title>raul.arabaolaza on tableToGrid pager rowNum</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p15436</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/tabletogrid-pager-rownum#p15436</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I m playing with jqgrid and my first try is convert and existing table to a jqgrid. All works fine, but i can make the &#160;pager work, so my question (maybe a stupid one) is if i can use pager when using tableToGrid and if so if i can use rowNum to control the rows number, all my tries have failed. The pager is shown but it dosen&#39;t work. It displays allways 0 pages available and the grid have a scroll to show all records at the same time whatever it&#39;s number is.</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4076' value='Select Code' data-codeid='sfcode4076' /></p>
<div class='sfcode' id='sfcode4076'>
<p>&#60;body&#62;</p>
<p>&#60;script&#62;</p>
<p>$(function(){</p>
<p>tableToGrid(&#34;#tabla&#34;,{</p>
<p>colNames:[&#34;Nombre del individuo&#34;,&#34;Apellidos del majo&#34;],</p>
<p>pager:&#39;#paginador&#39;,</p>
<p>rowNum:2,</p>
<p>viewrecords:true</p>
<p>});</p>
<p>});</p>
<p>&#60;/script&#62;</p>
</p>
<p>&#60;table id=&#34;tabla&#34;&#62;</p>
<p>&#60;thead&#62;</p>
<p>&#60;th scope=&#34;column&#34;&#62;Nombre&#60;/th&#62;</p>
<p>&#60;th scope=&#34;column&#34;&#62;Apellidos&#60;/th&#62;</p>
<p>&#60;/thead&#62;</p>
<p>&#60;tbody&#62;</p>
<p>&#60;tr&#62;</p>
<p>&#60;td&#62;Juan&#60;/td&#62;</p>
<p>&#60;td&#62;Cuesta&#60;/td&#62;</p>
<p>&#60;/tr&#62;</p>
<p>&#60;tr&#62;</p>
<p>&#60;td&#62;Juan&#60;/td&#62;</p>
<p>&#60;td&#62;Cuesta&#60;/td&#62;</p>
<p>&#60;/tr&#62;</p>
<p>............</p>
</p>
<p>&#60;tr&#62;</p>
<p>&#60;td&#62;Juan&#60;/td&#62;</p>
<p>&#60;td&#62;Cuesta&#60;/td&#62;</p>
<p>&#60;/tr&#62;</p>
<p>&#60;/tbody&#62;</p>
<p>&#60;/table&#62;</p>
<p>&#60;div id=&#34;paginador&#34;&#62;&#60;/div&#62;</p>
<p>&#60;/body&#62;</p>
</div>
<p>Thanks in advance.</p>
]]></description>
        	        	<pubDate>Fri, 05 Mar 2010 23:17:51 +0200</pubDate>
        </item>
</channel>
</rss>