<?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 : Hiding sorted field in group header</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Hiding sorted field in group header]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 16:18:54 +0000</pubDate>
  <lastBuildDate>Sun, 04 Jun 2006 08:17:21 +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=4250</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[Hiding sorted field in group header : Timo, It sorts groups by GroupPriority...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13360&amp;title=hiding-sorted-field-in-group-header#13360</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4250<br /><strong>Posted:</strong> 04 June 2006 at 8:17am<br /><br />Timo, <br><br>It sorts groups by GroupPriority if exists, then by GroupCaption if exists, and after that it sorts rows by rows values. <br><br>Could you please share your piece of code which doesn't work correctly? <br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Sun, 04 Jun 2006 08:17:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13360&amp;title=hiding-sorted-field-in-group-header#13360</guid>
  </item> 
  <item>
   <title><![CDATA[Hiding sorted field in group header : This works indeed, but I noticed...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13307&amp;title=hiding-sorted-field-in-group-header#13307</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2056">Timo</a><br /><strong>Subject:</strong> 4250<br /><strong>Posted:</strong> 02 June 2006 at 4:45am<br /><br /><P>This works indeed, but I noticed something strange:</P><P>the groups are not correctly sorted when you use the groupcaption option. It seems like the it sorts by the groupcation and not by the value of the recordItem.</P><P>This is a problem when you're grouping by a date column and you want a formatted date in the groupcaption (in my case format "dd-mm-yyyy").</P><P>&nbsp;</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 02 Jun 2006 04:45:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13307&amp;title=hiding-sorted-field-in-group-header#13307</guid>
  </item> 
  <item>
   <title><![CDATA[Hiding sorted field in group header : Hello,Yes, just use .GroupCaption...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13097&amp;title=hiding-sorted-field-in-group-header#13097</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4250<br /><strong>Posted:</strong> 23 May 2006 at 5:26pm<br /><br />Hello,<br><br>Yes, just use .GroupCaption property for an item of this column.<br>See VB sample, method SetDateItem.<br><table width="99%"><tr><td><pre class="BBcode"><br>&nbsp;&nbsp;&nbsp; 'This block of code determines the GroupPriority and GroupCaption of the Item<br>&nbsp;&nbsp;&nbsp; 'based on the date or generated provided.&nbsp; If the date is the current date, then this Item will<br>&nbsp;&nbsp;&nbsp; 'have High group and sort priority, and will be given the "Today" groupcaption.<br>&nbsp;&nbsp;&nbsp; If (Month(dt) = Month(Now)) And (Day(dt) = Day(Now)) And (Year(dt) = Year(Now)) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupCaption = "Today"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupPriority = 0<br>&nbsp;&nbsp;&nbsp; ElseIf (Month(dt) = Month(Now)) And (Year(dt) = Year(Now)) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupCaption = "This Month"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupPriority = 1<br>&nbsp;&nbsp;&nbsp; ElseIf (Year(dt) = Year(Now)) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupCaption = "This Year"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupPriority = 2<br>&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupCaption = "Older"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Item.GroupPriority = 3<br>&nbsp;&nbsp;&nbsp; End If<br></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Tue, 23 May 2006 17:26:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13097&amp;title=hiding-sorted-field-in-group-header#13097</guid>
  </item> 
  <item>
   <title><![CDATA[Hiding sorted field in group header : If I sort Report Control the group...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13057&amp;title=hiding-sorted-field-in-group-header#13057</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=729">tobi</a><br /><strong>Subject:</strong> 4250<br /><strong>Posted:</strong> 19 May 2006 at 2:30pm<br /><br /><P>If I sort Report Control the group headers contain the field name which the control is sorted. E.g. if I sort by Date all group header start by Date : XYZ.<BR>Is is possible to hide this information ? The group header should only display XYZ ( in this example ) ?<BR></P>]]>
   </description>
   <pubDate>Fri, 19 May 2006 14:30:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4250&amp;PID=13057&amp;title=hiding-sorted-field-in-group-header#13057</guid>
  </item> 
 </channel>
</rss>