Skip to main content
All docs
V25.1
  • SpecifyReportTitlePage Class

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

    Declaration

    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

    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
    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
    Promise<any,any,any>

    A JQuery Promise object that identifies whether section initialization succeeded.