<?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: Group sorting doesn't work</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-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/group-sorting-doesnt-work/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Group sorting doesn't work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-work#p30939</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-work#p30939</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Â </p>
<p>summaryRound is column property and not a groupView one. Set it in certain column.</p>
<p>Please explain what you expect and what is happen?</p>
<p>Â </p>
<p>I see you use server side code to get the data. The data should be sorted in appropriate way before it is send to the grid.</p>
<p>See what is posted as sorting data when you perform the sort.</p>
<p>We post the grouping fields too, which should be take in account in your server</p>
<p>Â </p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Mon, 11 Aug 2014 14:32:21 +0300</pubDate>
        </item>
        <item>
        	<title>itdevroman on Group sorting doesn't work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-work#p30924</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-work#p30924</guid>
        	        	<description><![CDATA[<p>And - summaryRound the same question.</p>
]]></description>
        	        	<pubDate>Sun, 03 Aug 2014 14:14:29 +0300</pubDate>
        </item>
        <item>
        	<title>itdevroman on Group sorting doesn't work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-work#p30923</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/group-sorting-doesnt-work#p30923</guid>
        	        	<description><![CDATA[<p>Hello!</p>
<p>Data in my jqGrid grouped by campaign name. But when I'm trying to order groups by any column, data will be ordered only inside the group. But groups ordered randomly.</p>
<p>Â </p>
<p>Code:</p>
<blockquote>
<p>
$('#b-summary__table').jqGrid({<br />
 url: "db.php?action=showbyid&#38;siteid1&#38;limit=10000",<br />
 datatype: "xml",<br />
 height: 'auto',<br />
 cellLayout: '0',<br />
 colNames: [ 'ÐšÐ°Ð¼Ð¿Ð°Ð½Ð¸Ñ', 'ÐšÐ»ÑŽÑ‡ÐµÐ²Ð¾Ðµ ÑÐ»Ð¾Ð²Ð¾', 'ÐŸÐ¾ÐºÐ°Ð·Ñ‹', 'CTR', 'ÐšÐ»Ð¸ÐºÐ¸', 'Ð¦ÐµÐ½Ð° ÐºÐ»Ð¸ÐºÐ°', 'ÐžÐ±Ñ‰Ð¸Ðµ Ð·Ð°Ñ‚Ñ€Ð°Ñ‚Ñ‹', 'Ð›Ð¸Ð´Ñ‹', 'CV 1', 'ÐŸÑ€Ð¾Ð´Ð°Ð¶Ð¸', 'CV 2', 'Ð’Ñ‹Ñ€ÑƒÑ‡ÐºÐ°', 'CPL', 'CPO', 'ROI'],<br />
 colModel: [<br />
 {name: 'campaign_name', index: 'campaign_name', width: 300, align: 'center',sorttype:'text'},<br />
 {name: 'key', index: 'key', width: 300, align: 'center',sorttype:'text'},<br />
 {name: 'shows', index: 'shows', width: 60, align: 'center', summaryType:'sum', summaryTpl:'{0}'},<br />
 {name: 'ctr', index: 'ctr', width: 35, align: 'center', summaryType:'avg', summaryTpl:'{0}'},<br />
 {name: 'click', index: 'clicks', width: 43, align: 'center',summaryType:'sum', summaryTpl:'{0}'},<br />
 {name: 'clickprice', index: 'clickprice', width: 60, align: 'center',summaryType:'avg', summaryTpl:'{0}'},<br />
 {name: 'totalprice', index: 'totalprice', width: 60, align: 'center',summaryType:'sum', summaryTpl:'{0}'},<br />
 {name: 'leads', index: 'leads', width: 40, align: 'center',summaryType:'sum', summaryTpl:'{0}'},<br />
 {name: 'cv1', index: 'cv1', width: 35, align: 'center',summaryType:'avg', summaryTpl:'{0}'},<br />
 {name: 'sellscount', index: 'sellscount', width: 65, align: 'center',summaryType:'sum', summaryTpl:'{0}'},<br />
 {name: 'cv2', index: 'cv2', width: 35, align: 'center',summaryType:'avg', summaryTpl:'{0}'},<br />
 {name: 'proceeds', index: 'proceeds', width: 62, align: 'center',summaryType:'sum', summaryTpl:'{0}'},<br />
 {name: 'cpl', index: 'cpl', width: 30, align: 'center',summaryType:'avg', summaryTpl:'{0}'},<br />
 {name: 'cpo', index: 'cpo', width: 30, align: 'center',summaryType:'avg', summaryTpl:'{0}'},<br />
 {name: 'roi', index: 'roi', width: 30, align: 'center',summaryType:'avg', summaryTpl:'{0}'},<br />
 ],<br />
 rowNum: 1000,<br />
 rowList: [1000,2000,5000,10000],<br />
 pagerpos: 'right',<br />
 grouping: true,<br />
 groupingView : {<br />
 groupField: ['campaign_name'],<br />
 groupDataSorted: true,<br />
 plusicon: 'ui-jqgrid-plus-icon',<br />
 minusicon: 'ui-jqgrid-minus-icon',<br />
 groupSummary : [true],<br />
 groupColumnShow : [true],<br />
 groupCollapse: true,<br />
 groupSummaryPos: ['header'],<br />
 groupText : ['&#60;b&#62;{0}&#60;/b&#62;'],<br />
 groupOrder: ['desc'],<br />
 summaryRoundType: 'fixed',<br />
 summaryRound: 2<br />
 }<br />
 });</p>
</blockquote>
<p>Screenshot:</p>
<p><a href="http://i.imgur.com/Od2kPGV.png"><img src="http://i.imgur.com/Od2kPGV.png" width="100"  class="sfimageleft spUserImage" alt="" /><img src="http://www.trirand.com/blog/wp-content/sp-resources/forum-themes/default/images/sp_Mouse.png" class="sfimageleft sfmouseleft" alt="Image Enlarger" /></a></p>
<p>How can I fix that?</p>
]]></description>
        	        	<pubDate>Sun, 03 Aug 2014 14:12:07 +0300</pubDate>
        </item>
</channel>
</rss>