SpecifyReportTitlePage Class
In This Article
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:
- 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>
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 |
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 |
A JQuery Promise object that identifies whether section initialization succeeded. |