AddGroupFieldsPage Class
In This Article
Implements the Add Group Fields section of the Report Wizard’s Define Report Layout page.
#Declaration
TypeScript
export class AddGroupFieldsPage 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.AddGroupFieldsPage value.
See the following topics for more information:
- Customize the Report/Data Source Wizard (ASP.NET Web Forms)
- Customize the Report/Data Source Wizard (ASP.NET MVC)
- Customize the Report/Data Source Wizard (ASP.NET Core)
#Inheritance
WizardPageBase<TState, TResult>
AddGroupFieldsPage
#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
#Declaration
TypeScript
commit(): JQuery.Promise<any, any, any>
#Returns
Type |
---|
Promise |
#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 | IReport |
The section’s state. |
#Returns
Type | Description |
---|---|
Promise |
A JQuery Promise object that identifies whether section initialization succeeded. |