Forum
Please
Log In
to post a new message or reply to an existing one. If you are not registered, please
register.
NOTE: Some forums may be read-only if you are not currently subscribed to
our technical support services.
Subject |
Author |
Date |
|
David Skok
|
Jan 2, 2009 - 8:20 AM
|
Clicking on a column header to sort no longer works. This bug is present in my application as well as in ReportGrid demo. Please take a look. Thanks, Dave
|
|
Technical Support
|
Jan 2, 2009 - 3:11 PM
|
This is a known issue in Prof-UIS 2.84. It appeared after adding sorting feature into the CExtTreeGridWnd class which is the base of the CExtReportGridWnd class. It’s very easy to fix this issue. Please add one line of code into constructor of the CExtReportGridDataProvider class:
CExtReportGridDataProvider::CExtReportGridDataProvider()
{
m_pTreeNodeDefaultRTC = RUNTIME_CLASS( CExtReportGridItem );
m_DP.m_bEnableSortOrderUpdatingRows = true;
}
|
|