Bug Report Q137659
Visible to All Users

The TcxPivotGridCrossCell.GetSummaryByField function generates an exception for hidden data fields

created 16 years ago

Hi
I have implemented an TcxCustomDataSource and bound it to an PivotGrid.
At runtime I create columns and link summaryprocedure to the actual summaryfields.
Calculation work fine when the summary is based on actual data. (Retrived through MyCustomDataSource.GetValue override).
But I have an problem when I Try to calculate a summaryfield based on another summaryfield.
ASummary.Owner.GetSummaryByField(tmpField, stSum);
If tmpField is an summaryfield, this will return Null
I have also tried to loop through record in ASummary
function TRBPivotForm.CalcSumField(Sender: TcxPivotGridField;
  ASummary: TcxPivotGridCrossCellSummary; Line: TLine): variant;
var
  tmpField: TcxPivotGridField;
  i:integer;
begin
  Result:= 0;
  for i := 0 to line.SumLinesIds.Count - 1 do
  begin
    tmpField:= FindField(line.SumLinesIds.Strings[i]);
    if tmpField <> nil then
      Result:= Result + ASummary.Owner.GetSummaryByField(tmpField, stSum);
  end;
Thanks!

Show previous comments (8)
DevExpress Support Team 14 years ago

    Hello Magne,
    Thank you for your message.
    I am afraid I cannot give you a precise answer about why this happens without examining a sample project. If it is possible, please try to create it and attach it to your next message. We will examine it and do our best to find a solution.
    Best Regards,
    Paulo

      Hi.
      I have reproduced the issue in the OnCustomCalculation event
      Run the sample project. Right click on pivotSumField1(data area) and select hide.
      Best regards

      DevExpress Support Team 14 years ago

        Hello Magne,
        Thank you for your sample project. It seems to be a bug in PivotGrid. I have converted this issue to a bug report and forwarded it to our developers for further processing. You will receive an automatic message once the status of this issue is changed.
        Best Regards,
        Paulo

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.