Design-flaw: CXTPReportControl::OnBeginDrag |
Post Reply |
Author | |
znakeeye
Senior Member Joined: 26 July 2006 Status: Offline Points: 1672 |
Post Options
Thanks(0)
Posted: 02 March 2008 at 7:05am |
Consider the code in CXTPReportControl::OnBeginDrag:
for (int i = nCount - 1; i >= 0; i--)
{ CXTPReportRow* pRow = pSelectedRows->GetAt(i); if (pRow->IsGroupRow()) { pRow->SetExpanded(TRUE); pRow->SelectChilds(); } } What if I do not want my group rows to expand when dragging? This should be customizable. As it is now, I have to replace the whole function in my report control. Not good
|
|
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 |