SpecifyObjectDataSourceSettingsPage Class
Implements the Data Source Wizard’s Specify Data Source Settings (Object) page.
Declaration
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:
- 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
constructor(_dataSourceWizardOptions)
Creates a new SpecifyObjectDataSourceSettingsPage
class instance with the specified settings.
Declaration
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
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
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
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
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. |