<?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 : removing items off a GroupBy area</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : removing items off a GroupBy area]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 03:38:56 +0000</pubDate>
  <lastBuildDate>Wed, 04 Jan 2006 13:05:04 +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=3464</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[removing items off a GroupBy area : Wow, sorry, you should have started...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10414&amp;title=removing-items-off-a-groupby-area#10414</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3464<br /><strong>Posted:</strong> 04 January 2006 at 1:05pm<br /><br />Wow, sorry, you should have started from the version you're using...<br><br>1) This option had an inverse default value previously :)<br><br>2) Little bit more details please if possible. Which action causes a removed column return?<br><br>pps: HTH = Hope that helps&nbsp; ;-)<br><br>--<br>WBR <img border="0" src="http://forum.codejock.com/smileys/smiley1.gif" border="0">,<br>Serge <br>]]>
   </description>
   <pubDate>Wed, 04 Jan 2006 13:05:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10414&amp;title=removing-items-off-a-groupby-area#10414</guid>
  </item> 
  <item>
   <title><![CDATA[removing items off a GroupBy area : I did try that but no luck. but...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10410&amp;title=removing-items-off-a-groupby-area#10410</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=186">Russ</a><br /><strong>Subject:</strong> 3464<br /><strong>Posted:</strong> 04 January 2006 at 10:36am<br /><br />I did try that but no luck. but I also tried to use this<br /><br />m_wndReport.GetReportHeader()-&gt;AllowColumnRemove(TRUE);<br /><br />this solved the first half of the problem. Now i can see the black cross when move the label outside of the GroupBy area..<br /><br />Is there any way to have the removed column header to go back to the control. Maybe I could intercept something somewhere :) and add the column being removed back to the report control.<br /> <br /><br /> Thank you<br /><br />PS: I am using xtp 9.51.<br />PSS: Сергей, что есть "НТН"? :)]]>
   </description>
   <pubDate>Wed, 04 Jan 2006 10:36:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10410&amp;title=removing-items-off-a-groupby-area#10410</guid>
  </item> 
  <item>
   <title><![CDATA[removing items off a GroupBy area : Rouslan,Please ensure you call...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10409&amp;title=removing-items-off-a-groupby-area#10409</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3464<br /><strong>Posted:</strong> 04 January 2006 at 10:12am<br /><br />Rouslan,<br><br>Please ensure you call Populate() method after changing GroupBy structure.<br><br>Following piece of code inserted into the end of CTaskListView::OnCreate method works fine for me:<br><table width="99%"><tr><td><pre class="BBcode"><br>wndReport.ShowGroupBy();<br>CXTPReportColumn* pCol = wndReport.GetColumns()-&gt;Find(COLUMN_STATUS);<br>wndReport.GetColumns()-&gt;GetGroupsOrder()-&gt;Clear();<br>wndReport.GetColumns()-&gt;GetGroupsOrder()-&gt;Add(pCol);<br>wndReport.Populate();<br></pre></td></tr></table><br><br>--<br>HTH,<br>Serge<br>]]>
   </description>
   <pubDate>Wed, 04 Jan 2006 10:12:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10409&amp;title=removing-items-off-a-groupby-area#10409</guid>
  </item> 
  <item>
   <title><![CDATA[removing items off a GroupBy area : Hi,  I like the way removing off...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10404&amp;title=removing-items-off-a-groupby-area#10404</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=186">Russ</a><br /><strong>Subject:</strong> 3464<br /><strong>Posted:</strong> 04 January 2006 at 3:58am<br /><br />Hi,<br /><br />I like the way removing off of items is done in the ReportSample. But I cannot achieve the same result in my view class inherited from CXTPReportView. And I cannot find any specific code in the sample that enables this functionality:<br /><br />1. A black cross shown over the column's label when user drags and moves the label out of the GroupBy area.<br />2. removed column returns back to the control<br /><br />I tried adding m_wndReport.ShowGroupBy() into sample's CTaskListView::OnCreate method. When I open Task Report sample it behaves exactly what I see in my own report view, i.e. it does not remove column's label off the groupBy area. <img border="0" src="http://forum.codejock.com/smileys/smiley19.gif" border="0"> <br /><br />So what is the trick?  <img border="0" src="http://forum.codejock.com/smileys/smiley4.gif" border="0"> <br /><br />Thank you.]]>
   </description>
   <pubDate>Wed, 04 Jan 2006 03:58:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3464&amp;PID=10404&amp;title=removing-items-off-a-groupby-area#10404</guid>
  </item> 
 </channel>
</rss>