![]() |
GroupBy Question |
Post Reply ![]() |
Author | |
mahi1217 ![]() Newbie ![]() Joined: 01 May 2009 Location: United States Status: Offline Points: 8 |
![]() ![]() ![]() ![]() ![]() Posted: 26 May 2009 at 4:07pm |
When i do GroupBy by any column , i get something like this ![]() In the above Visual we are grouping by " From " column ....
Is there any way to hide " From : " in the area i circled out ??? ( i dont want to display Column name and the following Colon )
|
|
![]() |
|
MGebler ![]() Groupie ![]() Joined: 18 May 2006 Location: Germany Status: Offline Points: 64 |
![]() ![]() ![]() ![]() ![]() |
You have to override the 'GetGroupCAption' method of your CXTPReportRecordItem derived class.
For example:
class MyReportRecordItemText
: public CXTPReportRecordItemText
{
// ...
virtual CString GetGroupCaption(CXTPReportColumn* pColumn)
{
return GetValue();
}
};
I hope this will help you...
|
|
![]() |
|
mahi1217 ![]() Newbie ![]() Joined: 01 May 2009 Location: United States Status: Offline Points: 8 |
![]() ![]() ![]() ![]() ![]() |
Thank you very much .. This Helped ....
|
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |