SpecifyReportTitlePage<TState, TResult> Class
Implements the Specify Report Title section of the Report Wizard’s Specify Page Settings page.
Declaration
export class SpecifyReportTitlePage extends WizardPageBase
Type Parameters
Name | Description |
---|---|
TState | A type of the state to initialize the page (optional). |
TResult | A type of the page’s commit result (optional). |
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)
Implements
Inheritance
constructor
Creates a new instance of the SpecifyReportTitlePage<TState, TResult>
class with the default settings.
Declaration
constructor()
Properties
reportTitle Property
Specifies the report title.
Declaration
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
commit(): JQuery.Promise<any, any, any>
Returns
Type | Description |
---|---|
JQuery.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
initialize(
state: any
): JQuery.Promise<any, any, any>
Parameters
Name | Type | Description |
---|---|---|
state | any | The section’s state. |
Returns
Type | Description |
---|---|
JQuery.Promise<any,any,any> | A JQuery Promise object that identifies whether section initialization succeeded. |