<?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: 2 Subgrids</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/2-subgrids</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/2-subgrids/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>djkuddel on 2 Subgrids</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27532</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27532</guid>
        	        	<description><![CDATA[]]></description>
        	        	<pubDate>Sat, 13 Oct 2012 00:16:42 +0300</pubDate>
        </item>
        <item>
        	<title>djkuddel on 2 Subgrids</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27531</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27531</guid>
        	        	<description><![CDATA[<p>Hi,</p>
</p>
<p>I try to use 2 times subGridRowExpanded or</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4820' value='Select Code' data-codeid='sfcode4820' /></p>
<div class='sfcode' id='sfcode4820'>...</div>
<p><input type='button' class='sfcodeselect' name='sfselectit1515' value='Select Code' data-codeid='sfcode1515' /></p>
<div class='sfcode' id='sfcode1515'>subGridRowExpanded: function(subgrid_id, row_id) { 		var subgrid_table_id, pager_id; 		subgrid_table_id = subgrid_id+&#34;_t&#34;; 		pager_id = &#34;p_&#34;+subgrid_table_id; 		$(&#34;#&#34;+subgrid_id).html(&#34;&#60;table id=&#39;&#34;+subgrid_table_id+&#34;&#39;  class=&#39;scroll&#39;&#62;&#60;/table&#62;&#60;div id=&#39;&#34;+pager_id+&#34;&#39;  class=&#39;scroll&#39;&#62;&#60;/div&#62;&#34;); 		jQuery(&#34;#&#34;+subgrid_table_id).jqGrid({ 			url:&#34;subgrid.php?q=2&#38;id=&#34;+row_id, 			datatype: &#34;xml&#34;, 			colNames: [&#39;No&#39;,&#39;Item&#39;,&#39;Qty&#39;,&#39;Unit&#39;,&#39;Line Total&#39;], 			colModel: [ 				{name:&#34;num&#34;,index:&#34;num&#34;,width:80,key:true}, 				{name:&#34;item&#34;,index:&#34;item&#34;,width:130}, 				{name:&#34;qty&#34;,index:&#34;qty&#34;,width:70,align:&#34;right&#34;}, 				{name:&#34;unit&#34;,index:&#34;unit&#34;,width:70,align:&#34;right&#34;}, 				{name:&#34;total&#34;,index:&#34;total&#34;,width:70,align:&#34;right&#34;,sortable:false} 			], 		   	rowNum:20, 		   	pager: pager_id, 		   	sortname: &#39;num&#39;, 		    sortorder: &#34;asc&#34;, 		    height: &#39;100%&#39; 		}); 		 jQuery(&#34;#&#34;+subgrid_table_id).jqGrid(&#39;navGrid&#39;,&#34;#&#34;+pager_id,{edit:false,add:false,del:false})  	},</div>
<p><input type='button' class='sfcodeselect' name='sfselectit9467' value='Select Code' data-codeid='sfcode9467' /></p>
<div class='sfcode' id='sfcode9467'>subGridRowExpanded: function(subgrid_id, row_id) { 		var  subgrid_table_id, pager_id; 		subgrid_table_id = subgrid_id+&#34;_t&#34;; 		 pager_id = &#34;p_&#34;+subgrid_table_id; 		$(&#34;#&#34;+subgrid_id).html(&#34;&#60;table  id=&#39;&#34;+subgrid_table_id+&#34;&#39;  class=&#39;scroll&#39;&#62;&#60;/table&#62;&#60;div  id=&#39;&#34;+pager_id+&#34;&#39;  class=&#39;scroll&#39;&#62;&#60;/div&#62;&#34;); 		 jQuery(&#34;#&#34;+subgrid_table_id).jqGrid({ 			 url:&#34;subgrid.php?q=2&#38;id=&#34;+row_id, 			datatype: &#34;xml&#34;, 			colNames:  [&#39;No&#39;,&#39;Item&#39;,&#39;Qty&#39;,&#39;Unit&#39;,&#39;Line Total&#39;], 			colModel: [ 				 {name:&#34;num&#34;,index:&#34;num&#34;,width:80,key:true}, 				 {name:&#34;item&#34;,index:&#34;item&#34;,width:130}, 				 {name:&#34;qty&#34;,index:&#34;qty&#34;,width:70,align:&#34;right&#34;}, 				 {name:&#34;unit&#34;,index:&#34;unit&#34;,width:70,align:&#34;right&#34;}, 				 {name:&#34;total&#34;,index:&#34;total&#34;,width:70,align:&#34;right&#34;,sortable:false} 			],  		   	rowNum:20, 		   	pager: pager_id, 		   	sortname: &#39;num&#39;, 		     sortorder: &#34;asc&#34;, 		    height: &#39;100%&#39; 		}); 		  jQuery(&#34;#&#34;+subgrid_table_id).jqGrid(&#39;navGrid&#39;,&#34;#&#34;+pager_id,{edit:false,add:false,del:false})   	}...</div>
<p>But it do not work.</p>
</p>
<p>Where is the mistake?</p>
</p>
<p>Many thanks</p>
<p>DJ</p>
]]></description>
        	        	<pubDate>Sat, 13 Oct 2012 00:16:39 +0300</pubDate>
        </item>
        <item>
        	<title>djkuddel on 2 Subgrids</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27522</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27522</guid>
        	        	<description><![CDATA[<p>You mean I can add this event, in my case, two times?</p>
</p>
<p>Many thanks</p>
<p>DJ</p>
]]></description>
        	        	<pubDate>Thu, 11 Oct 2012 18:25:10 +0300</pubDate>
        </item>
        <item>
        	<title>tony on 2 Subgrids</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27516</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27516</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>Yes this is possible. You can open unlimited grids.</p>
<p>Just use subGridRowExpanded event in a appropriate way. See demos with one grid.</p>
</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Thu, 11 Oct 2012 17:41:04 +0300</pubDate>
        </item>
        <item>
        	<title>djkuddel on 2 Subgrids</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27501</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/2-subgrids#p27501</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>I want to know, if it is possible to get 2 different subgrids under an open record?</p>
</p>
<p>Many thanks</p>
<p>DJ</p>
]]></description>
        	        	<pubDate>Tue, 09 Oct 2012 11:35:48 +0300</pubDate>
        </item>
</channel>
</rss>