<?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: Subgrid issue:  plus icon not rendering in rows</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows</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/subgrid-issue-plus-icon-not-rendering-in-rows/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>danbowles on Subgrid issue:  plus icon not rendering in rows</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows#p18994</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows#p18994</guid>
        	        	<description><![CDATA[<p>Yup, that did it - thanks again Tony!</p>
]]></description>
        	        	<pubDate>Thu, 05 Aug 2010 23:27:31 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Subgrid issue:  plus icon not rendering in rows</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows#p18993</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows#p18993</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The "fundamental" thing is to set</p>
</p>
<p>gridview : false</p>
</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 05 Aug 2010 23:08:24 +0300</pubDate>
        </item>
        <item>
        	<title>danbowles on Subgrid issue:  plus icon not rendering in rows</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows#p18990</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/subgrid-issue-plus-icon-not-rendering-in-rows#p18990</guid>
        	        	<description><![CDATA[<p>I hope I am missing something fundamental, but I am currently at a loss.</p>
<p>I want to have a subgrid of data, as is in the examples - really like that functionality.&#160; I&#39;m worried it only works with XML as everything returns JSON and all is well.</p>
<p>Here is my configuration code - again, hoping I made some silly mistake.&#160; Many thanks for the help!</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit2694' value='Select Code' data-codeid='sfcode2694' /></p>
<div class='sfcode' id='sfcode2694'>function ViewDatesLocationsGridSettings(eventId) {<br />&#160;&#160; &#160;return $(&#39;#view-dates-grid&#39;).jqGrid({<br />&#160;&#160; &#160;&#160;&#160; &#160;gridview: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;autowidth:true,<br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#view-dates-pager&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;colNames: [&#39;Id&#39;, &#39;From&#39;, &#39;Until&#39;, &#39;Locations&#39;],<br />&#160;&#160; &#160;&#160;&#160; &#160;colModel: [<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{ name: &#39;id&#39;, index: &#39;id&#39; },<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{ name: &#39;StartDate&#39;, index: &#39;StartDate&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{ name: &#39;EndDate&#39;, index: &#39;EndDate&#39;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{ name: &#39;Locations&#39;, index: &#39;Locations&#39;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; ],<br />&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;StartDate&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum: 20,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowList: [20,50,100,500],<br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: &#39;asc&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;height: 160,<br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: &#39;json&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;caption: &#39;Event Dates and Locations&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;mtype: &#39;POST&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;subGrid : true, <br />&#160;&#160; &#160;&#160;&#160; &#160;subGridUrl: &#39;subgrid.php?q=2&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;subGridModel: [<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;{ name : [&#39;No&#39;,&#39;Item&#39;,&#39;Qty&#39;,&#39;Unit&#39;,&#39;Line Total&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; width : [55,200,80,80,80] } <br />&#160;&#160; &#160;&#160;&#160; &#160;], <br />&#160;&#160; &#160;&#160;&#160; &#160;jsonReader: {<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;root: &#39;rows&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;page: &#39;page&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;total: &#39;total&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;records: &#39;records&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;repeatitems: false,<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;userdata: &#39;userdata&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;},<br />&#160;&#160; &#160;&#160;&#160; &#160;url: tc.rootUrl + &#39;/JsonEventDates&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;postData: {eventId: eventId},<br />&#160;&#160; &#160;});<br />}</div></p>
]]></description>
        	        	<pubDate>Thu, 05 Aug 2010 17:31:17 +0300</pubDate>
        </item>
</channel>
</rss>