<?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: grouping does not work?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work</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/grouping-does-not-work/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Frisco on grouping does not work?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25318</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25318</guid>
        	        	<description><![CDATA[<p>I see, thanks again!</p>
]]></description>
        	        	<pubDate>Sat, 03 Dec 2011 20:28:16 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on grouping does not work?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25317</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25317</guid>
        	        	<description><![CDATA[<p>No, look at <a href="/jqgridwiki/doku.php?id=wiki:grouping#grid_options" target="_blank">the documentation</a>. In the <strong>Type</strong> column you will see <strong>array</strong> only for the column which can define settings for the grouping by <em>multiple</em> columns. Other options like <strong>groupCollapse</strong>, <strong>groupDataSorted</strong> for example can&#39;t be set on different values for different grouping columns. Such properties are not arrays.</p>
<p>Regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Sat, 03 Dec 2011 20:12:37 +0200</pubDate>
        </item>
        <item>
        	<title>Frisco on grouping does not work?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25316</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25316</guid>
        	        	<description><![CDATA[<p>perfect, that&#39;s it! 🙂</p>
<p>Should I put all "true" or "false" values without brackets?</p>
<p>Cheers</p>
<p>Frisco</p>
]]></description>
        	        	<pubDate>Sat, 03 Dec 2011 19:39:12 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on grouping does not work?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25314</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25314</guid>
        	        	<description><![CDATA[<p>Hello Frisco,</p>
<p>you should change&#160;<span style="white-space: pre;"><strong>groupCollapse: [true]</strong> in the </span><span style="white-space: pre;"><strong>groupingView</strong> to <strong>groupCollapse: true</strong>.</span></p>
<p><span style="white-space: pre;">Best regards<br />Oleg&#160;</span></p>
]]></description>
        	        	<pubDate>Sat, 03 Dec 2011 19:33:30 +0200</pubDate>
        </item>
        <item>
        	<title>Frisco on grouping does not work?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25311</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-does-not-work#p25311</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I have groupCollapse: [true] but my grid shows up with all rows visible/uncollapsed. Do I need to call a trigger or something else after addRowData (see 5th last row of the code below). Or is something else wrong with my code?</p>
<blockquote>
<pre id="line162">&#60;script type="text/javascript"&#62;

jQuery(document).ready(function(){ 
    jQuery("#offene_nennungen").jqGrid({
        datatype: &#39;clientSide&#39;,
        colNames:[&#39;Nr.&#39;,&#39;Frage&#39;, &#39;Dimension&#39;,&#39;Skala&#39;,&#39;Antwort&#39;,&#39;n&#39;],
        colModel :[ 
        {name:&#39;nummer&#39;,index:&#39;nummer&#39;, width:25, align:&#39;left&#39;, sorttype:&#39;text&#39;, hidden:true}, // 
        {name:&#39;frage&#39;,index:&#39;frage&#39;, width:100, align:&#39;left&#39;, sorttype:&#39;text&#39;}, 
        {name:&#39;dimension&#39;,index:&#39;dimension&#39;,width:80, align:&#39;left&#39;, sorttype:&#39;text&#39;, hidden:true}, // 
        {name:&#39;skala&#39;,index:&#39;skala&#39;, width:80, align:&#39;left&#39;, sorttype:&#39;text&#39;, hidden:true},  // 
        {name:&#39;antwort&#39;,index:&#39;antwort&#39;, width:660, align:&#39;left&#39;, sorttype:&#39;text&#39;}, 
        {name:&#39;anzahl&#39;,index:&#39;anzahl&#39;, width:25, align:&#39;center&#39;, sorttype:&#39;int&#39;}
],
        pager: &#39;#pager_offene_nennungen&#39;,
        height: &#39;auto&#39;,
        width: &#39;100%&#39;,
        rowNum:75,
        rowList: [10,25,50], 
        viewrecords: true,
        multiselect: false,  
        grouping:true, 
        groupingView : { 
               groupField: [&#39;frage&#39;],
               groupColumnShow: [false],
               groupCollapse: [true], 
               groupOrder: [&#39;asc&#39;]  
        }, 
        caption: &#39;Offene Nennungen nach Frage&#39;
   }); 

var arrdata = [ {nummer:"ASonst", frage:"ASonst: Sonstiges (Wie haben Sie w&#228;hrend Ihres Coachings die Rahmenbedingungen wahrgenommen?)", dimension:"Strukturdimension", skala:"Rahmenbedingungen", antwort:"F&#38;uuml;hlte mich exakt verstanden - bed&#38;uuml;rfnisorientiertes Arbeiten absolut gew&#38;auml;hrleistet", anzahl:"1"}, {nummer:"ASonst", frage:"ASonst: Sonstiges (Wie haben Sie w&#228;hrend Ihres Coachings die Rahmenbedingungen wahrgenommen?)", dimension:"Strukturdimension", skala:"Rahmenbedingungen", antwort:"Hr. Bischof konnte immer (auch bei Fragen und Promlemstellungen) sehr verl&#38;auml;sslich &#38;amp; kompetent zu Rate gezogen werden. ", anzahl:"1"},   ];

for(var i=0;i&#60;=arrdata.length;i++) jQuery("#offene_nennungen").addRowData(i+1, arrdata[i]);
jQuery("#offene_nennungen").trigger("reloadGrid");
}); 

&#60;/script&#62;

&#60;table id="offene_nennungen"&#62;&#60;/table&#62;
&#60;div id="pager_offene_nennungen"&#62;&#60;/div&#62;</pre>
</blockquote>
<p>Cheers<br />Frisco</p>
]]></description>
        	        	<pubDate>Sat, 03 Dec 2011 17:24:54 +0200</pubDate>
        </item>
</channel>
</rss>