Skip to main content

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

SelectReportTypePage Class

Implements the Report Wizard’s Select Report Type page.

#Declaration

TypeScript
export class SelectReportTypePage extends AnalyticChooseDataSourceTypePage

#Remarks

This wizard page allows users to select a report type to create.

You can hide specific report types or remove this page from the Report Wizard. To identify this page in code, use the FullscreenReportWizardPageId.SelectReportTypePage enumeration value.

See the following topics for more information:

#constructor(_options)

Creates a new instance of the SelectReportTypePage class with the specified settings.

#Declaration

TypeScript
constructor(
    _options: ISelectReportTypePageOptions
)

#Parameters

Name Type Description
_options ISelectReportTypePageOptions

The page settings.

#Properties

#defaultImageID Property

#Declaration

TypeScript
static defaultImageID: string

#Property Value

Type
string

#selectedItem Property

#Declaration

TypeScript
selectedItem: ko.Observable<DevExpress.Reporting.Designer.Utils.IReportWizardTypeItem>

#Property Value

Type
Observable<IReportWizardTypeItem>

#typeItems Property

#Declaration

TypeScript
typeItems: DevExpress.Reporting.Designer.Utils.IReportWizardTypeItem[]

#Property Value

Type
IReportWizardTypeItem[]

#Methods

#canFinish Method

Specifies whether the Finish button is enabled on a wizard page.

#Declaration

TypeScript
canFinish(): boolean

#Returns

Type Description
boolean

true, if the Finish button is enabled; otherwise, false.

#canNext Method

Specifies whether the Next button is enabled on a wizard page.

#Declaration

TypeScript
canNext(): boolean

#Returns

Type Description
boolean

true, if the Next button is enabled; otherwise, false.

#commit Method

Commits the page’s local state to the global state.

#Declaration

TypeScript
commit(): JQueryPromise<any>

#Returns

Type Description
JQueryPromise<any>

A JQuery Promise object that identifies whether the commit succeeded.

#getListOptions Method

#Declaration

TypeScript
getListOptions(): object

#Returns

Type
object

#initialize(state) Method

Initializes the page with the specified settings.

#Declaration

TypeScript
initialize(
    state: DevExpress.Reporting.Designer.Wizard.IReportWizardState
): JQueryPromise<any>

#Parameters

Name Type Description
state IReportWizardState

A page’s local state to initialize.

#Returns

Type Description
JQueryPromise<any>

A JQuery Promise object that identifies whether page initialization succeeded.

#Remarks

You can use the wizard’s beforePageInitialize and afterPageInitialize events to customize the page.

See the following topics for more information:

#itemsFilter(item) Method

#Declaration

TypeScript
itemsFilter(
    item: DevExpress.Reporting.Designer.Utils.IReportWizardTypeItem
): boolean

#Parameters

Name Type
item IReportWizardTypeItem

#Returns

Type
boolean