<?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: Can't get grouping and footer to work PLEASE HELP!</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/cant-get-grouping-and-footer-to-work-please-help</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/cant-get-grouping-and-footer-to-work-please-help/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>brenden on Can't get grouping and footer to work PLEASE HELP!</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/cant-get-grouping-and-footer-to-work-please-help#p20353</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/cant-get-grouping-and-footer-to-work-please-help#p20353</guid>
        	        	<description><![CDATA[<div id="post20334">
<p>Hello,&#160; I can&#39;t get the footer feature to work.&#160; I don&#39;t get a error it just doesn&#39;t show up.</p>
<p>In the code below I have declred the column for sum using <span style="color: #3366ff;"><strong>summaryType:&#39;sum&#39;,  summaryTpl:&#39;&#60;b&#62;Total: {0}&#60;/b&#62;&#39; },</strong></span></p>
<p>And set the following properties:</p>
<p>&#160; grouping:true,<br /><strong><span style="color: #3366ff;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupingView : { groupField : [&#39;Status&#39;], <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupSummary : [true],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupColumnShow : [true], <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupText : [&#39;&#60;b&#62;{0}&#60;/b&#62;&#39;], <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupCollapse : false, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupOrder: [&#39;asc&#39;] },</span></strong></p>
<p>The grid displys fine with all the data but the footer doesn&#39;t show up nor does the collapsable sections.&#160; I really appreciate any ideas because I&#39;m all out of things to try!</p>
</p>
<p><strong><span style="color: #3366ff;"><br /></span></strong></p>
<p>$(document).ready(function() {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; jQuery("#fasTravelerGrid").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "local",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: "auto",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; hoverrows:true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; width: 600,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: [&#39;Id&#39;, &#39;guid&#39;, &#39;Traveler Name&#39;, &#39;Travel Start Date&#39;, &#39;Travel End Date&#39;, &#39;Cost Estimate&#39;, &#39;Status&#39;],<br />&#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; { name: &#39;id&#39;, index: &#39;id&#39;, width: 1 },<br />&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; { name: &#39;guid&#39;, index: &#39;guid&#39;, width: 1 },<br />&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; { name: &#39;TravelerName&#39;, index: &#39;Traveler Name&#39;, width: 125, editable: false },<br />&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; { name: &#39;TravelStartDate&#39;, index: &#39;Travel Start Date&#39;, sorttype:"date", width: 100, editable: false },<br />&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; { name: &#39;TravelEndDate&#39;, index: &#39;Travel End Date&#39;, sorttype:"date", width: 100, editable: false },<br />&#160;  &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; { name: &#39;Cost Estimate&#39;, index: &#39;Cost Estimate&#39;,  sorttype:"float", width: 75, editable: false,summaryType:&#39;sum&#39;,  summaryTpl:&#39;&#60;b&#62;Total: {0}&#60;/b&#62;&#39; },<br />&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160;&#160; { name: &#39;Status&#39;, index: &#39;Status&#39;, width: 200, editable: 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;&#160;&#160;&#160; ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ondblClickRow: function(id) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;  window.open(GetServerPath()+ &#39;userdefined/edit.aspx?id=&#39; +  $("#fasTravelerGrid").getCol(&#39;guid&#39;)[id-1]+  &#39;&#38;_CreateFromType=10052&#38;_CreateFromId=%7b609AFEFE-70C2-DF11-B753-005056B21DD5%7d&#38;etc=10008#&#39;);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; grouping:true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupingView : { groupField : [&#39;Status&#39;], <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupSummary : [true],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupColumnShow : [true], <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupText : [&#39;&#60;b&#62;{0}&#60;/b&#62;&#39;], <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupCollapse : false, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupOrder: [&#39;asc&#39;] }, <br />&#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; editurl: "/ISV/XRM/postCost.aspx",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;Status&#39;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
</div>
]]></description>
        	        	<pubDate>Mon, 18 Oct 2010 15:49:57 +0300</pubDate>
        </item>
</channel>
</rss>