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

SpecifyReportTitlePage Class

Implements the Specify Report Title section of the Report Wizard’s Specify Page Settings page.

#Declaration

TypeScript
export class SpecifyReportTitlePage extends WizardPageBase

#Remarks

You can customize this section or remove it from the Specify Page Settings page. To identify this section in code, use the FullscreenReportWizardSectionId.SpecifyReportTitlePage value.

See the following topics for more information:

#Inheritance

WizardPageBase<TState, TResult>
SpecifyReportTitlePage

#constructor

Initializes a new instance of the SpecifyReportTitlePage class.

#Declaration

TypeScript
constructor()

#Properties

#reportTitle Property

Specifies the report title.

#Declaration

TypeScript
reportTitle: ko.Observable<string> | ko.Computed<string>

#Property Value

Type
Observable<string>
Computed<string>

#Methods

#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.

#initialize(state) Method

Initializes the section with the specified settings.

#Declaration

TypeScript
initialize(
    state: any
): JQuery.Promise<any, any, any>

#Parameters

Name Type Description
state any

The section’s state.

#Returns

Type Description
Promise<any,any,any>

A JQuery Promise object that identifies whether section initialization succeeded.