<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : [BUG] GROUPING DOES NOT WORK</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : [BUG] GROUPING DOES NOT WORK]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 02:01:01 +0000</pubDate>
  <lastBuildDate>Wed, 09 Mar 2011 14:35:30 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=17965</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[[BUG] GROUPING DOES NOT WORK : The question is why it&amp;#039;s...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63208&amp;title=bug-grouping-does-not-work#63208</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=903">Alex G.</a><br /><strong>Subject:</strong> 17965<br /><strong>Posted:</strong> 09 March 2011 at 2:35pm<br /><br />The question is why it's not possible ?<br><br>I would like to use grouping as well, my datasets are even bigger, &gt; 2,000,000 records...<br>]]>
   </description>
   <pubDate>Wed, 09 Mar 2011 14:35:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63208&amp;title=bug-grouping-does-not-work#63208</guid>
  </item> 
  <item>
   <title><![CDATA[[BUG] GROUPING DOES NOT WORK : Hi SuperMario,  You may have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63099&amp;title=bug-grouping-does-not-work#63099</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6620">reims_rep</a><br /><strong>Subject:</strong> 17965<br /><strong>Posted:</strong> 04 March 2011 at 3:30am<br /><br />Hi SuperMario,<DIV>&nbsp;</DIV><DIV>You may have not really investigated what I meant. Your reply is&nbsp;just lifted from the CJ samples which of course I Have tried already before posting my&nbsp;problem here.&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>I'll attach samples for each of the scenarios I refer to above so that it would be easier for everyone to verify my claims.</DIV>]]>
   </description>
   <pubDate>Fri, 04 Mar 2011 03:30:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63099&amp;title=bug-grouping-does-not-work#63099</guid>
  </item> 
  <item>
   <title><![CDATA[[BUG] GROUPING DOES NOT WORK : As I think you seen in the Report...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63084&amp;title=bug-grouping-does-not-work#63084</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 17965<br /><strong>Posted:</strong> 03 March 2011 at 8:51am<br /><br />As I think you seen in the Report Sample, to get this type of subgrouping you have to set some properties of that ReportRecordItem.&nbsp;Ithink your best option would be to use BeforeDrawRow.&nbsp;Below is a quicksample you can try, it sets based on Row index, but you would insteadcheck the date and set the correct priority.<br><br>Private SubwndReportControl_BeforeDrawRow(ByVal Row AsXtremeReportControl.IReportRow, ByVal Item AsXtremeReportControl.IReportRecordItem, ByVal Metrics AsXtremeReportControl.IReportRecordItemMetrics)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;If Not Item Is Nothing Then<br>&nbsp;&nbsp;&nbsp;&nbsp;If Item.Index = COLUMN_RECEIVED Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If Row.Index Mod 2 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupCaption = "Date: Today"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupPriority = 0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ElseIf Row.Index Mod 3 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupCaption = "Date: This Month"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupPriority = 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupCaption = "Date: Older"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Item.GroupPriority = 3<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End If<br>&nbsp;&nbsp;&nbsp;&nbsp;End If<br>&nbsp;&nbsp;End If<br>End Sub]]>
   </description>
   <pubDate>Thu, 03 Mar 2011 08:51:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63084&amp;title=bug-grouping-does-not-work#63084</guid>
  </item> 
  <item>
   <title><![CDATA[[BUG] GROUPING DOES NOT WORK : Hello,Forum is primary place where...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63000&amp;title=bug-grouping-does-not-work#63000</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 17965<br /><strong>Posted:</strong> 28 February 2011 at 3:32am<br /><br />Hello,<div><br></div><div>Forum is primary place where developers&nbsp;exchange&nbsp;knowledge.&nbsp;</div><div><a href="http://forum.codejock.com/forum_posts.asp?TID=14125&amp;FID=113&amp;PR=3&amp;title=notice-codejock-support-policy" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=14125</a></div><div><br></div><div>Please use <a href="http://support.codejock.com" target="_blank">http://support.codejock.com</a> or&nbsp;<a href="http://codejock.com/support/" target="_blank">http://codejock.com/support/</a>&nbsp;for Codejock support.</div>]]>
   </description>
   <pubDate>Mon, 28 Feb 2011 03:32:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=63000&amp;title=bug-grouping-does-not-work#63000</guid>
  </item> 
  <item>
   <title><![CDATA[[BUG] GROUPING DOES NOT WORK : I have already posted a couple...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=62998&amp;title=bug-grouping-does-not-work#62998</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6620">reims_rep</a><br /><strong>Subject:</strong> 17965<br /><strong>Posted:</strong> 27 February 2011 at 2:47pm<br /><br /><P>I have already posted a couple of items in your forums BUT:</P><DIV>1. I never got any reply or whatsoever that they are being queued for action or what.</DIV><DIV>2. I didn't even get an automatic email indicating that you received, rejected, discarded, or ignored them.</DIV><DIV>&nbsp;</DIV><DIV>I am expecting someone from your side to notify me what your intended action on the issue I posted above and when you intend to take action on it. This is especially important because the feature cannot be excluded in our software release.</DIV>]]>
   </description>
   <pubDate>Sun, 27 Feb 2011 14:47:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=62998&amp;title=bug-grouping-does-not-work#62998</guid>
  </item> 
  <item>
   <title><![CDATA[[BUG] GROUPING DOES NOT WORK :  CUSTOMER USERNAME: FRANK32 ORDER...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=62997&amp;title=bug-grouping-does-not-work#62997</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6620">reims_rep</a><br /><strong>Subject:</strong> 17965<br /><strong>Posted:</strong> 27 February 2011 at 2:43pm<br /><br /><DIV>&nbsp;</DIV><DIV>CUSTOMER USERNAME: <SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-: EN-US; mso-fareast-: EN-US; mso-bidi-: AR-SA">FRANK32</SPAN></DIV><DIV><SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-: EN-US; mso-fareast-: EN-US; mso-bidi-: AR-SA">ORDER <SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-: EN-US; mso-fareast-: EN-US; mso-bidi-: AR-SA">#83380</SPAN></SPAN></DIV><DIV><SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-: EN-US; mso-fareast-: EN-US; mso-bidi-: AR-SA"><SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-ansi-: EN-US; mso-fareast-: EN-US; mso-bidi-: AR-SA"></SPAN>&nbsp;</SPAN></DIV><DIV>WE CANNOT GROUP ON DATE FIELDS AS IN OUTLOOK (I.E. YESTERDAY, LAST WEEK, LAST MONTH, ETC.)&nbsp;&nbsp;EXCEPT BY ADDING RECORDS MANUALLY TO RC WHICH IS NOT AN OPTION FOR US BECAUSE WE HAVE A LARGE NUMBER OF RECORDS TO DISPLAY.</DIV><DIV>&nbsp;</DIV><DIV>PLEASE HAVE THIS BUG FIXED ASAP!</DIV><DIV>&nbsp;</DIV><DIV>RC has three modes to populate with records:</DIV><DIV><DIV>&nbsp;</DIV><DIV>1. Virtual Mode</DIV><DIV><DIV>1.1 Virtual Mode is Fast.</DIV><DIV>1.2 BUT IT ISN'T POSSIBLE TO GROUP IN VIRTUAL MODE. SO THIS CAN't BE AN OPTION FOR US.</DIV><DIV>&nbsp;</DIV></DIV></DIV><DIV>2. Adding Records and Items Manually</DIV><DIV>2.1 This is the only mode when the grouping on date fields as described above works. </DIV><DIV>2.2 HOWEVER THIS IS ALSO NOT AN OPTION BECAUSE IT SIMPLY TAKES TOO LONG TO LOAD THE RECORDS ( &gt; 120,000 RECORDS).</DIV><DIV>&nbsp;</DIV><DIV>3. Binding RC with a recordset</DIV><DIV>3.1. THIS MODE IS SLOW FOR LARGE NUMBERS OF RECORDS.</DIV><DIV>3.2. &#091;B U G&#093; THE GROUPIING ON DATE FIELDS DOES NOT WORK AS WELL AS DESCRIBED ABOVE. TRY GROUPING ON THE DATE FIELD OF YOUR DATABINDING EXAMPLE USING THE DATE GROUPING IN YOUR OUTLOOK 2003 EXAMPLE.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sun, 27 Feb 2011 14:43:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17965&amp;PID=62997&amp;title=bug-grouping-does-not-work#62997</guid>
  </item> 
 </channel>
</rss>