<?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: xmlstring pagination problem</title>
	<link>http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem</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/discussion/xmlstring-pagination-problem/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on xmlstring pagination problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2786</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2786</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>As described in the docs - jqGrid does not support client side pagnation.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 10:32:26 +0200</pubDate>
        </item>
        <item>
        	<title>cdac.amit on xmlstring pagination problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2769</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2769</guid>
        	        	<description><![CDATA[<p>Thanks Tony for your response, but the problem persists. Actually the</p>
<p>xmlstring has 16 rows but I want to do pagination of 10 rows per page. While the page loads for first time it shows all 16 rows, even I am providing</p>
<p>&#39;page&#39;, &#39;total&#39; and &#39;records&#39; informations.</p>
<p>Even after page load if I click &#39;next&#39;, it shows me all the rows.</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 05:28:23 +0200</pubDate>
        </item>
        <item>
        	<title>tony on xmlstring pagination problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2762</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2762</guid>
        	        	<description><![CDATA[<p>When using xmlstring, after the first call the data automatically</p>
<p>is set to clientSide. Insted use onPagging event</p>
<p>onPaging : function (button){</p>
<p>$(gridid).setGridParam({datatype: "xmlstring"})</p>
<p>}</p>
<p>To force the pagging</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 29 Oct 2008 03:41:09 +0200</pubDate>
        </item>
        <item>
        	<title>cdac.amit on xmlstring pagination problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2722</link>
        	<category>Discussion</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/discussion/xmlstring-pagination-problem#p2722</guid>
        	        	<description><![CDATA[<p>Hi All,</p>
<p>I am using &#39;xmlstring&#39; to populate grid, but paginaton is not working in this. I am using lift/scala for my developement. code I have written is given below :</p>
<p><span style="text-decoration: underline;"><strong>html part</strong></span></p>
<p>&#60;body style="font-size: 11px;"&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;table id="list4" class="scroll" cellpadding="3" cellspacing="0"&#62;&#60;/table&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;div id="pager4" class="scroll" style="text-align:center;"&#62;&#60;/div&#62;<br />&#160;&#160;&#160; &#60;/body&#62;</p>
<p><span style="text-decoration: underline;"><strong>script part</strong></span></p>
<p>&#60;lift:Testing:grid&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;script type="text/javascript"&#62;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $(document).ready(function() <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; var xmlDoc = &#39;&#60;flexi:xmldata/&#62;&#39;;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; jQuery(&#39;#list4&#39;).jqGrid(<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; datatype: &#39;xmlstring&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datastr : xmlDoc,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; height: 250,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; colNames:[&#39;Inv No&#39;, &#39;Client Name&#39;, &#39;Inv Date&#39;, &#39;Amount&#39;, &#39;Tax&#39;, &#39;Total&#39;, &#39;Notes&#39;],<br />&#160;&#160;&#160; &#160;&#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;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; {name:&#39;id&#39;,index:&#39;id&#39;, width:60, sorttype:&#39;int&#39;},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;name&#39;,index:&#39;name&#39;, width:100,align:&#39;left&#39;},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90, sorttype:&#39;date&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:&#39;right&#39;,sorttype:&#39;float&#39;},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;tax&#39;,index:&#39;tax&#39;, width:80, align:&#39;right&#39;,sorttype:&#39;float&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;total&#39;,index:&#39;total&#39;, width:80,align:&#39;right&#39;,sorttype:&#39;float&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;note&#39;,index:&#39;note&#39;, width:150, sortable:false} <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#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; &#160;&#160;&#160;&#160;&#160; imgpath: &#39;../images/flexigrid/images&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; multiselect: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; caption: &#39;Manipulating XML Data&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; &#160;&#160;&#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; &#160;&#160;&#160;&#160;&#160; //rowList:[10,20,30], <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; pager: jQuery(&#39;#pager4&#39;),<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160; sortname: &#39;id&#39;<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; });<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }).navGrid(&#39;#pager4&#39;,{edit:false,add:false,del:false});<br />&#160;&#160;&#160; &#160;&#160;&#160; &#60;/script&#62;&#160;&#160;&#160; <br />&#160;&#160;&#160; &#60;/lift:Testing:grid&#62;</p>
</p>
<p>I tried to debug the grid.base.js but got no clue. Please help me to implemenet pager with &#39;xmlstring&#39; data.</p>
</p>
<p>Thanks &#38; Regards,</p>
<p>Amit Kumar Verma</p></p>
]]></description>
        	        	<pubDate>Tue, 28 Oct 2008 02:54:40 +0200</pubDate>
        </item>
</channel>
</rss>