<?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: Pager not displaying pages and totals</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals</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/pager-not-displaying-pages-and-totals/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p30814</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p30814</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I think that the problem is in css setting and the style shhets.<br />
Try with very basic setting and jqgrid only to see that everthing is fine.</p>
<p>Kind Regards</p>
]]></description>
        	        	<pubDate>Tue, 08 Jul 2014 11:23:04 +0300</pubDate>
        </item>
        <item>
        	<title>edotom on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p30795</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p30795</guid>
        	        	<description><![CDATA[<p>I had a similar problem recently, my pager showed all buttons but navigation ones. Â My jqgrid had only three fields. Â After going nuts for a couple of days and changing everything several times, I found that jqgrid needs to have at least a minimum width to show all buttons. Â Apparently a number between 600 and 800 is good. It worked for me but I couldnÂ´t find on documentation if there is a minimum width for grid or if pager can have a width on it. Â I would like to have a word of advice from trirand support.</p>
<p>Â </p>
<p>regards</p>
<p>Â </p>
<p>edgar</p>
]]></description>
        	        	<pubDate>Thu, 26 Jun 2014 17:39:45 +0300</pubDate>
        </item>
        <item>
        	<title>erich93063 on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10971</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10971</guid>
        	        	<description><![CDATA[<p>Ok well I got it to work with the following code. What I needed to do was to get rid of:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3034' value='Select Code' data-codeid='sfcode3034' /></p>
<div class='sfcode' id='sfcode3034'>recordtext:&#39;Total Records&#39;, <br />pgtext:&#39;of&#39;,&#160;</div>
<p>If you use those, you need to reference {0}, {1} and {2} in those values. Since i wasnt doing that, the numbers were blank.</p>
</p>
<p>This is what worked</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3006' value='Select Code' data-codeid='sfcode3006' /></p>
<div class='sfcode' id='sfcode3006'>&#60;script type=&#8221;text/javascript&#8221;&#62; <br />$(document).ready(function()<br />&#160;&#160;&#160; &#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $(&#8221;#list&#8221;).jqGrid(<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;Users.cfc?method=getUsers&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;json&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;CandidateID&#39;,&#39;FirstName&#39;,&#39;LastName&#39;], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel :[<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;CandidateID&#39;,index:&#39;CandidateID&#39;, width:150, sorttype:"int"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;FirstName&#39;,index:&#39;FirstName&#39;, width:150, sorttype:"string"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;LastName&#39;,index:&#39;LastName&#39;, width:150, sorttype:"string"}&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: $(&#39;#pager&#39;),&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pginput: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:10, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[10,20,50,100], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: &#8220;asc&#8221;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#8220;CandidateID&#8221;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Users&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height:&#39;auto&#39;, &#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jsonReader: {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; root: &#8220;ROWS&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; page: &#8220;PAGE&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; total: &#8220;TOTAL&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; records:&#8221;RECORDS&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; cell: &#8220;&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; id: &#8220;id&#8221;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; );&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; );<br />&#160;&#160;&#160; &#60;/script&#62;</div>
]]></description>
        	        	<pubDate>Wed, 21 Oct 2009 16:37:46 +0300</pubDate>
        </item>
        <item>
        	<title>erich93063 on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10968</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10968</guid>
        	        	<description><![CDATA[<p>I also just tried switchin it to XML and I&#39;m getting the same thing. No page counts and no totals.</p>
<p>Code:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2487' value='Select Code' data-codeid='sfcode2487' /></p>
<div class='sfcode' id='sfcode2487'>&#60;link rel="stylesheet" type="text/css" media="screen" href="css/redmond/jquery-ui-1.7.2.custom.css" /&#62;<br />&#60;link rel="stylesheet" type="text/css" media="screen" href="css/ui.jqgrid.css" /&#62;<br />&#160;<br />&#60;script src="js/jquery-1.3.2.min.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="js/i18n/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;<br />&#60;script src="js/jquery.jqGrid.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script type="text/javascript"&#62; <br />$(document).ready(function()<br />&#160;&#160;&#160; &#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $("#list").jqGrid(<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;test.xml&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;xml&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;CandidateID&#39;,&#39;FirstName&#39;,&#39;LastName&#39;], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel :[<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;CandidateID&#39;,index:&#39;CandidateID&#39;, width:150, sorttype:"int"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;FirstName&#39;,index:&#39;FirstName&#39;, width:150, sorttype:"string"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;LastName&#39;,index:&#39;LastName&#39;, width:150, sorttype:"string"}&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: $(&#39;#pager&#39;),&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pginput: "true",&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:10, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[10,20,50,100], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: "asc", <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: "CandidateID", <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Users&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height:&#39;auto&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; recordtext:&#39;Total Records&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pgtext:&#39;of&#39;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; );&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; );<br />&#160;&#160;&#160; &#60;/script&#62;</p>
<p>&#60;/head&#62;<br />&#60;body&#62;</p>
<p>&#60;table id="list"&#62;&#60;/table&#62;<br />&#60;div id="pager"&#62;&#60;/div&#62;</p>
</div>
<p>XML:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4582' value='Select Code' data-codeid='sfcode4582' /></p>
<div class='sfcode' id='sfcode4582'>&#60;?xml version="1.0" encoding="UTF-8"?&#62;<br />&#60;rows&#62;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#60;page&#62;1&#60;/page&#62;<br />&#160;&#160;&#160; &#60;total&#62;400&#60;/total&#62;<br />&#160;&#160;&#160; &#60;records&#62;4000&#60;/records&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609264&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Duncan&#60;/cell&#62;</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Cottrell&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609265&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Colletta&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Brabham-orr&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;</p>
<p>&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609266&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Aaron&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Bryan&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609267&#60;/cell&#62;</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Millicent&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Williams&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609268&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Liang&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Chen&#60;/cell&#62;</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609269&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Sylvia&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Marquez&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609270&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Minu&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Sinha&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609271&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Tejas&#60;/cell&#62;</p>
<p>&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Kadakia&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609272&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Elisa&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Person&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;</p>
<p>&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;row&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;609273&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Mustafa&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#60;cell&#62;Yaman&#60;/cell&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/row&#62;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#60;/rows&#62;</p>
</div>
]]></description>
        	        	<pubDate>Wed, 21 Oct 2009 15:53:57 +0300</pubDate>
        </item>
        <item>
        	<title>erich93063 on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10963</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10963</guid>
        	        	<description><![CDATA[<p>HMM Still not working. Here is what im using right now. Is my JSON not correct or something? Like I said, the grid loads and sorts and paginates. It&#39;s just missing the page counts and total. So frustrating. I&#39;m so close.:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4875' value='Select Code' data-codeid='sfcode4875' /></p>
<div class='sfcode' id='sfcode4875'>&#60;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; href=&#8221;css/redmond/jquery-ui-1.7.2.custom.css&#8221; /&#62;<br />&#60;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; href=&#8221;css/ui.jqgrid.css&#8221; /&#62;<br />&#160;<br />&#60;script src=&#8221;js/jquery-1.3.2.min.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;<br />&#60;script src=&#8221;js/i18n/grid.locale-en.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;<br />&#60;script src=&#8221;js/jquery.jqGrid.min.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;</p>
<p>&#60;script type=&#8221;text/javascript&#8221;&#62; <br />$(document).ready(function()<br />&#160;&#160;&#160; &#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $(&#8221;#list&#8221;).jqGrid(<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;Users.cfc?method=getUsers&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;json&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;CandidateID&#39;,&#39;FirstName&#39;,&#39;LastName&#39;], &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel :[<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;CandidateID&#39;,index:&#39;CandidateID&#39;, width:150, sorttype:"int"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;FirstName&#39;,index:&#39;FirstName&#39;, width:150, sorttype:"string"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;LastName&#39;,index:&#39;LastName&#39;, width:150, sorttype:"string"}&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: $(&#39;#pager&#39;),&#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pginput: &#8220;true&#8221;,&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:10, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[10,20,50,100], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: &#8220;asc&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#8220;CandidateID&#8221;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Users&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height:&#39;auto&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; recordtext:&#39;Total Records&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pgtext:&#39;of&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jsonReader: {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; root: &#8220;ROWS&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; page: &#8220;PAGE&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; total: &#8220;TOTAL&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; records:&#8221;RECORDS&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; cell: &#8220;&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; id: &#8220;id&#8221;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; );&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; );<br />&#160;&#160;&#160; &#60;/script&#62;</p>
<p>&#60;table id=&#8221;list&#8221;&#62;&#60;/table&#62;<br />&#60;div id=&#8221;pager&#8221;&#62;&#60;/div&#62;</p>
</div>
<p><input type='button' class='sfcodeselect' name='sfselectit7558' value='Select Code' data-codeid='sfcode7558' /></p>
<div class='sfcode' id='sfcode7558'><code>JSON:</p>
<p>{"ROWS":[[609264,"Duncan","Cottrell"],[609265,"Colletta","Brabham-orr"],[609266,"Aaron","Bryan"],[609267</p>
<p></code><code>,"Millicent","Williams"],[609268,"Liang","Chen"],[609269,"Sylvia","Marquez"],[609270,"Minu","Sinha"]</code><code>,[609271,"Tejas","Kadakia"],[609272,"Elisa","Person"],[609273,"Mustafa","Yaman"]],"PAGE":1,"TOTAL":400</code><code>,"RECORDS":4000}</code></div>
<pre><code></code></pre>
]]></description>
        	        	<pubDate>Wed, 21 Oct 2009 15:10:49 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10924</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10924</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Be a sure that you have a pginput set to true. Also could you please to provide integers instead of floats in the request.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 21 Oct 2009 05:08:25 +0300</pubDate>
        </item>
        <item>
        	<title>erich93063 on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10888</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10888</guid>
        	        	<description><![CDATA[<p>HMM I looked at the wiki and I&#39;m doing exactly what it says to do. I would think just using</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4889' value='Select Code' data-codeid='sfcode4889' /></p>
<div class='sfcode' id='sfcode4889'>pager: $(&#39;#pager&#39;),</div>
<p>should work and use the defaults for the pager. I did for what its worth try:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4683' value='Select Code' data-codeid='sfcode4683' /></p>
<div class='sfcode' id='sfcode4683'>pager: $(&#39;#pager&#39;), <br />recordtext: "View {0} - {1} of {2}",<br />emptyrecords: "No records to view",<br />pgtext : "Page {0} of {1}",</div>
<p>but that didnt work either. The pager works as far as clicking ont the prev/next buttons and it actually paging, it&#39;s just missing the page counts and the total on the pager. They are blank, even though those values are being passed in the JSON. Maybe my JSOn is incorrect?</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1670' value='Select Code' data-codeid='sfcode1670' /></p>
<div class='sfcode' id='sfcode1670'><code><span>{"ROWS":[[609264,"Duncan","Cottrell","<a class="smarterwiki-linkify" href="mailto:duncancottrell@yahoo.com" target="_blank">duncancottrell@yahoo.com</a>"],[609265,"Colletta","Brabham-orr","collettaorr</span></code><code><span>@hotmail.com"],[609266,"Aaron","Bryan","<a class="smarterwiki-linkify" href="mailto:AaBryan@Gmail.com" target="_blank">AaBryan@Gmail.com</a>"],[609267,"Millicent","Williams","millicentwllms</span></code><code><span>@yahoo.com"],[609268,"Liang","Chen","<a class="smarterwiki-linkify" href="mailto:lchen@tulane.edu" target="_blank">lchen@tulane.edu</a>"],[609269,"Sylvia","Marquez","bushqui@fastmail</span></code><code><span>.com"],[609270,"Minu","Sinha","<a class="smarterwiki-linkify" href="mailto:minu.varan@gmail.com" target="_blank">minu.varan@gmail.com</a>"],[609271,"Tejas","Kadakia","<a class="smarterwiki-linkify" href="mailto:rajk234@hotmail.com" target="_blank">rajk234@hotmail.com</a>"</span></code><code><span>],[609272,"Elisa","Person","<a class="smarterwiki-linkify" href="mailto:elisaperson@sbcglobal.net" target="_blank">elisaperson@sbcglobal.net</a>"],[609273,"Mustafa","Yaman","mustafayaman1977@yahoo</span></code><code>.com"]],"PAGE":1.0,"TOTAL":400.0,"RECORDS":4000}</code></div>
<p><code></code></p></p>
]]></description>
        	        	<pubDate>Tue, 20 Oct 2009 11:28:44 +0300</pubDate>
        </item>
        <item>
        	<title>jack_s on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10848</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10848</guid>
        	        	<description><![CDATA[<p>hi,&#160; that drove me crazy too - you are probably looking at some out of date docs (assuming you&#39;re using the latest release).</p>
<p>Go here to new docs and it is easily fixed:</p>
</p>
<p><a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:pager" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....wiki:pager</a></p>
]]></description>
        	        	<pubDate>Mon, 19 Oct 2009 16:48:31 +0300</pubDate>
        </item>
        <item>
        	<title>erich93063 on Pager not displaying pages and totals</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10846</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/pager-not-displaying-pages-and-totals#p10846</guid>
        	        	<description><![CDATA[<p>K I&#39;m going crazy over here. I finally got my grid working using ColdFusion. The grid displays, will sort and the pagination works BUT, the pages in the pager and the total records found will not display in the pager.&#160; So where it is supposed to say &#8220;1 of 400&#8243;, it jsut says &#8220;of&#8221; and instead of &#8220;Total Records: 4000&#8243;, it just says &#8220;Total Records&#8221;. The previous/next buttons display and if i click them they work and actually paginate the records, its just missing the page totals and record totals. Here is my code:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3654' value='Select Code' data-codeid='sfcode3654' /></p>
<div class='sfcode' id='sfcode3654'>&#60;script type=&#8221;text/javascript&#8221;&#62; <br />$(document).ready(function()<br />&#160;&#160;&#160; &#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $(&#8221;#list&#8221;).jqGrid(<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url:&#39;Users.cfc?method=getUsers&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;json&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames:[&#39;CandidateID&#39;,&#39;FirstName&#39;,&#39;LastName&#39;, &#39;Email&#39;],&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel :[<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;CandidateID&#39;,index:&#39;CandidateID&#39;, width:150, sorttype:"int"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;FirstName&#39;,index:&#39;FirstName&#39;, width:150, sorttype:"string"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;LastName&#39;,index:&#39;LastName&#39;, width:150, sorttype:"string"},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;Email&#39;,index:&#39;Email&#39;, width:150, sorttype:"string"}<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: $(&#39;#pager&#39;), <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList:[10,20,50,100],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: &#8220;asc&#8221;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#8220;CandidateID&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;Users&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height:&#39;auto&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; recordtext:&#39;Total Records&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pgtext:&#39;of&#39;, &#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jsonReader: {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; root: &#8220;ROWS&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; page: &#8220;PAGE&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; total: &#8220;TOTAL&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; records:&#8221;RECORDS&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; cell: &#8220;&#8221;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; id: &#8220;id&#8221;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; );&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; );<br />&#160;&#160;&#160; &#60;/script&#62;</div>
<p><input type='button' class='sfcodeselect' name='sfselectit3475' value='Select Code' data-codeid='sfcode3475' /></p>
<div class='sfcode' id='sfcode3475'>&#60;table id=&#8221;list&#8221; class=&#8221;scroll&#8221; cellpadding=&#8221;0&#8243; cellspacing=&#8221;0&#8243;&#62;&#60;/table&#62;<br />&#60;div id=&#8221;pager&#8221;&#62;&#60;/div&#62;</div>
<p>Here is a sample response from firebug:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit3268' value='Select Code' data-codeid='sfcode3268' /></p>
<div class='sfcode' id='sfcode3268'><code>{"ROWS":[[609264,"Duncan","Cottrell","duncancottrell@yahoo.com"],[609265,"Colletta","Brabham-orr","collettaorr</code><code>@hotmail.com"],[609266,"Aaron","Bryan","AaBryan@Gmail.com"],[609267,"Millicent","Williams","millicentwllms</code><code>@yahoo.com"],[609268,"Liang","Chen","lchen@tulane.edu"],[609269,"Sylvia","Marquez","bushqui@fastmail</code><code>.com"],[609270,"Minu","Sinha","minu.varan@gmail.com"],[609271,"Tejas","Kadakia","rajk234@hotmail.com"</code><code>],[609272,"Elisa","Person","elisaperson@sbcglobal.net"],[609273,"Mustafa","Yaman","mustafayaman1977@yahoo</code><code>.com"]],"PAGE":1.0,"TOTAL":400.0,"RECORDS":4000}</code></div>
<pre><code></code></pre>
]]></description>
        	        	<pubDate>Mon, 19 Oct 2009 16:19:27 +0300</pubDate>
        </item>
</channel>
</rss>