<?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: cliendSide Data (Array or XML-String) -&#62; pager problems</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems</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/cliendside-data-array-or-xml-string-pager-problems/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on cliendSide Data (Array or XML-String) -&#62; pager problems</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems#p6703</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems#p6703</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Humm, you are right. The problem is that grid expect 10 (or less than 10) rows from server. When we deal with xml,json&#160; and strings this is not checked. I need to revise this and check the code. Should apply the fix carefully.</p>
<p>Thanks</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 15 May 2009 02:28:49 +0300</pubDate>
        </item>
        <item>
        	<title>AKS on cliendSide Data (Array or XML-String) -&#62; pager problems</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems#p6629</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems#p6629</guid>
        	        	<description><![CDATA[<p>on my version with a clientSide array the "Row(s)" are counted correctly. But also very data on one page.</p>
]]></description>
        	        	<pubDate>Tue, 12 May 2009 07:23:55 +0300</pubDate>
        </item>
        <item>
        	<title>AKS on cliendSide Data (Array or XML-String) -&#62; pager problems</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems#p6628</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/cliendside-data-array-or-xml-string-pager-problems#p6628</guid>
        	        	<description><![CDATA[<p>Hi all,</p>
<p>i have to use a cliendSide Array or XML-String to fill the grid.</p>
<p>my code:<br />&#60;table id="list" class="scroll"&#62;&#60;/table&#62; <br />&#60;div id="pager" class="scroll" style="text-align:center;"&#62;&#60;/div&#62; </p>
<p>&#60;script type="text/javascript"&#62;<br />var mystr ="&#60;?xml version=&#39;1.0&#39; encoding=&#39;utf-8&#39;?&#62;&#60;invoices&#62;&#60;rows&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data1&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data2&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data3&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data4&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data5&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data6&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data7&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data8&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data9&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data10&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;row&#62;"<br />+"&#60;cell&#62;data11&#60;/cell&#62;"<br />+"&#60;/row&#62;"<br />+"&#60;/rows&#62;"<br />+"&#60;/invoices&#62;";</p>
<p>jQuery(document).ready(function(){ <br />&#160; jQuery("#list").jqGrid({<br />&#160;&#160;&#160; datatype: &#39;xmlstring&#39;,<br />&#160;&#160;&#160; datastr : mystr,<br />&#160;&#160;&#160; width:300,<br />&#160;&#160;&#160; colNames:[&#39;Inv No&#39;],<br />&#160;&#160;&#160; colModel :[ <br />&#160;&#160;&#160;&#160;&#160; {name:&#39;invid&#39;, index:&#39;invid&#39;, width:55, sorttype:&#39;int&#39;} ],<br />&#160;&#160;&#160; pager: jQuery(&#39;#pager&#39;),<br />&#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160; rowList:[10,20,30],<br />&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; imgpath: gridimgpath,<br />&#160;&#160;&#160; caption: &#39;My first grid&#39;<br />&#160; }); <br />}); </p>
<p>&#60;/script&#62;</p>
</p>
<p><a href="http://users.informatik.haw-hamburg.de/~schulz_a/Bild.png"><img src="http://users.informatik.haw-hamburg.de/~schulz_a/Bild.png" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a></p>
<p>At the image you can see my problem. I have 11 records in my grid, the "rowNum" == "10" and everything is on one page. can you give me a solution how i can work with the pager and a "clientSide" datastore.</p>
</p>
<p>greets</p>
<p>arne</p>
]]></description>
        	        	<pubDate>Tue, 12 May 2009 07:21:15 +0300</pubDate>
        </item>
</channel>
</rss>