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

SpecifyObjectDataSourceSettingsPage Class

Implements the Data Source Wizard’s Specify Data Source Settings (Object) page.

#Declaration

TypeScript
export class SpecifyObjectDataSourceSettingsPage extends WizardPageBase<DevExpress.Analytics.Wizard.IDataSourceWizardState, DevExpress.Analytics.Wizard.IObjectDataSourceWizardState>

#Remarks

This wizard page allows users to specify settings of a new object data source.

You can customize this page, hide specific sections or remove this page from the Report Wizard. To identify this page in code, use the FullscreenDataSourceWizardPageId.SpecifyObjectDataSourceSettingsPage enumeration value.

See the following topics for more information:

#Inheritance

WizardPageBase<TState, TResult>
SpecifyObjectDataSourceSettingsPage

#constructor(_dataSourceWizardOptions)

Creates a new SpecifyObjectDataSourceSettingsPage class instance with the specified settings.

#Declaration

TypeScript
constructor(
    _dataSourceWizardOptions: DevExpress.Analytics.Wizard._MultiQueryDataSourceWizardOptions
)

#Parameters

Name Type
_dataSourceWizardOptions _MultiQueryDataSourceWizardOptions

#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 settings to the local page state.

#Declaration

TypeScript
commit(): JQuery.Promise<DevExpress.Analytics.Wizard.IObjectDataSourceWizardState, any, any>

#Returns

Type Description
Promise<IObjectDataSourceWizardState,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: DevExpress.Analytics.Wizard.IDataSourceWizardState
): JQuery.Promise<any, any, any>

#Parameters

Name Type Description
state IDataSourceWizardState

The page initialization settings.

#Returns

Type Description
Promise<any,any,any>

A JQuery Promise object that identifies whether section initialization succeeded.