Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

AddSummaryFieldsPage Class

Implements the Add Summary Fields section of the Report Wizard’s Define Report Layout page.

#Declaration

TypeScript
export class AddSummaryFieldsPage extends WizardPageBase

#Remarks

You can customize this section or remove it from the Define Report Layout page. To identify this section in code, use the FullscreenReportWizardSectionId.AddSummaryFieldsPage value.

See the following topics for more information:

#Inheritance

#Properties

#ignoreNullValues Property

Specifies whether to ignore NULL data field values.

#Declaration

TypeScript
ignoreNullValues: ko.Observable<boolean>

#Property Value

Type Description
Observable<boolean>

true, to ignore NULL values; otherwise, false.

#Methods

#canFinish Method

Specifies whether it is possible to finish the wizard.

#Declaration

TypeScript
canFinish(): boolean

#Returns

Type Description
boolean

true, if it is possible to finish the wizard; otherwise, false.

#commit Method

Commits settings to the local page state.

#Declaration

TypeScript
commit(): JQuery.Promise<any, any, any>

#Returns

Type Description
Promise<any,any,any>

A JQuery Promise object that identifies whether the commit succeeded.

#dispose Method

Disposes the page.

#Declaration

TypeScript
dispose(): void

#initialize(state) Method

Initializes the section with the specified settings.

#Declaration

TypeScript
initialize(
    state: DevExpress.Reporting.Designer.Wizard.IReportWizardState
): JQuery.Promise<any, any, any>

#Parameters

Name Type Description
state IReportWizardState

The section’s state.

#Returns

Type Description
Promise<any,any,any>

A JQuery Promise object that identifies whether section initialization succeeded.