<?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: Sub Grid trouble</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble</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/sub-grid-trouble/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Sub Grid trouble</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble#p7361</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble#p7361</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>This mean that you do not have a proper rowid set in the main grid.</p>
<p>subgrid_id is a combination of the rowid+"_id".</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 21 Jun 2009 05:43:01 +0300</pubDate>
        </item>
        <item>
        	<title>ayushman on Sub Grid trouble</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble#p7307</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble#p7307</guid>
        	        	<description><![CDATA[<p>when i checked,the Element ("#"+subgrid_id) does not exists</p>
]]></description>
        	        	<pubDate>Thu, 18 Jun 2009 00:38:48 +0300</pubDate>
        </item>
        <item>
        	<title>ayushman on Sub Grid trouble</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble#p7293</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/sub-grid-trouble#p7293</guid>
        	        	<description><![CDATA[<p>I was tring to use a sub grid but it has not been working. I backtraced with the server and the server is responding with Correct format xml.Please Help</p>
<p>(i also tried to check myself it does not show .&#39;("#"+subgrid_id)&#39;does not give any element .</p>
<p>Please help.</p>
<p>this is the grid code:-</p>
<p>&#160;jQuery("#list1").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url:url_const,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "xml",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:colnames,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel:colmodel,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype:&#39;GET&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height:&#39;350&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:15,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList:[10,15,20,25,30],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; imgpath: "themes/green/images",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: jQuery(&#39;#pager1&#39;),<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;ip&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder:"desc" ,<br />&#160;&#160;&#160;&#160;&#160;&#160; caption:"Session Comparision Table",<br />&#160;&#160;&#160;&#160;&#160;&#160; subGrid:true,<br />&#160;&#160;&#160;&#160;&#160;&#160; subGridRowExpanded: function(subgrid_id, row_id)<br />&#160;&#160;&#160;&#160;&#160;&#160; {&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var subgrid_table_id, pager_id;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; subgrid_table_id = subgrid_id+"_t";<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager_id = "p_"+subgrid_table_id;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var tempval="&#60;table id=&#39;"+subgrid_table_id+"&#39; class=&#39;scroll&#39;&#62;&#60;/table&#62;&#60;div id=&#39;"+pager_id+"&#39; class=&#39;scroll&#39;&#62;&#60;/div&#62;";<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; $("#"+subgrid_id).html(tempval);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#"+subgrid_table_id).jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url:suburl_const+"&#38;id="+row_id,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "xml",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mtype:&#39;GET&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: subcolname,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: subcolmodel,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:5,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: pager_id,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; imgpath: "themes/sand/images",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;port&#39;,<br />&#160;&#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;&#160; height: &#39;100%&#39; })}<br />&#160;&#160;&#160;&#160;&#160;&#160; });<br />&#160;&#160;&#160;&#160; <br />});</p></p>
]]></description>
        	        	<pubDate>Wed, 17 Jun 2009 13:28:13 +0300</pubDate>
        </item>
</channel>
</rss>