<?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: Why does rowNum get overwritten to 10000?</title>
	<link>http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000</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/treegrid/why-does-rownum-get-overwritten-to-10000/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>OlegK on Why does rowNum get overwritten to 10000?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28112</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28112</guid>
        	        	<description><![CDATA[<p>You are welcome!</p>
<p>At the first look TreeGrid is wrong choice for your requirements. Probably <a href="/jqgridwiki/doku.php?id=wiki:subgrid_as_grid" target="_blank">grid with subgrids</a> is what you really need? You will display 10 accounts in the grid having pagination. I would recommend you to add <a href="/jqgridwiki/doku.php?id=wiki:toolbar_searching" target="_blank">searching toolbar</a> to the grid. If you just add <strong>subGrid: true</strong> option to the account grid the column with "+" will be add and if the user click on the icon you can create any custom information below the expended row. Typically one creates subgrid with some kind of details inside of <strong>subGridRowExpanded</strong>.</p>
<p>I recomend you additionally to read <a href="http://stackoverflow.com/questions/14216113/resize-subgrid-columns-on-resizing-main-grid/14265456#14265456" target="_blank">the answer</a> which could be helpful in your case.</p>
<p>Regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Thu, 24 Jan 2013 16:31:18 +0200</pubDate>
        </item>
        <item>
        	<title>kpturner on Why does rowNum get overwritten to 10000?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28111</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28111</guid>
        	        	<description><![CDATA[<p>Thanks for the reply.&#160; I think that my requirement is much more simple.&#160;</p>
</p>
<p>I want to load a top level grid with pagination.&#160; If the user expands a row, then I want the children of that row to be loaded in full (and it will only be nested to one level).</p>
</p>
<p>For example, I might have 10000 accounts in the database, but my grid should only load accounts 10 at a time, and I want to be able to page through them. Very rarely, the user may expand the account to see sub-accounts (there may be only ever be a few of these).</p>
<p>I can do this very easily with the other simple grids in my application, but I want to be able to replace these with jqGrid.&#160; At the moment, I can&#39;t.</p>
</p>
<p>Is there a different method I should use?</p></p>
]]></description>
        	        	<pubDate>Thu, 24 Jan 2013 16:18:04 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Why does rowNum get overwritten to 10000?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28110</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28110</guid>
        	        	<description><![CDATA[<p>TreeGrid don&#39;t supports paging so all node at one should be displayed by tree grid (see limitations in&#160;<a href="/jqgridwiki/doku.php?id=wiki:treegrid#cautions_and_limitations" target="_blank">the documentation</a>). Don&#39;t forget, that only expanded nodes will be displayed in the grid so the full number of all items of the TreeGrid could be many more as the number of items displayed. If the user clicks on the icon on the side of the node to expend it jqGrid will make new request to the server. The server should returns <strong>all</strong> subitems of the expanded node.</p>
<p>If <strong>rowNum</strong> would not be changed to 10000 and it would be for example 10 instead than jqGrid would display only the first 10 nodes and will discard all other nodes.</p>
<p>Regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Thu, 24 Jan 2013 16:08:01 +0200</pubDate>
        </item>
        <item>
        	<title>kpturner on Why does rowNum get overwritten to 10000?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28109</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/why-does-rownum-get-overwritten-to-10000#p28109</guid>
        	        	<description><![CDATA[<p>Hello, I am using 4.3.3.&#160; If I specify "treeGrid":true then no matter what I set rowNum to, it gets overwritten to 10000 unless I also specify rowTotal.&#160; Is this correct?&#160;&#160; For my server, rowTotal is irrelevant.</p>
</p>
<p>Here is the code in grid.treegrid.js</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1834' value='Select Code' data-codeid='sfcode1834' /></p>
<div class='sfcode' id='sfcode1834'>
<p>setTreeGrid : function() {<br />&#160;&#160; &#160;&#160;&#160; &#160;return this.each(function (){<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;var $t = this, i=0, pico, ecol = false, nm, key, tkey, dupcols=[];<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!$t.p.treeGrid) {return;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if(!$t.p.treedatatype ) {$.extend($t.p,{treedatatype: $t.p.datatype});}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.subGrid = false;$t.p.altRows =false;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.pgbuttons = false;$t.p.pginput = false;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;$t.p.gridview =&#160; true;<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;if($t.p.rowTotal === null ) { $t.p.rowNum = 10000; } &#60;&#60;&#60;&#60;&#60;&#60;&#60;HERE&#160;&#160;</p>
</div>
]]></description>
        	        	<pubDate>Thu, 24 Jan 2013 15:36:37 +0200</pubDate>
        </item>
</channel>
</rss>