IDataSourceWizardState Interface
If implemented, provides functionality for the Data Source Wizard‘s global state.
#Declaration
export interface IDataSourceWizardState
#Remarks
The Data Source Wizard’s global state implements the IDataSourceWizardState interface and stores all the settings required to create a data source.
When the wizard runs, the initialize method initializes the global state with the predefined settings. The wizard’s onFinish method generates a data source based on the resulting global state.
Each wizard page uses a specific subset of the global state (a page’s local state). The page updates its local state based on a user’s input, and then, commits this state to the global state.
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
#Properties
#dataSourceId Property
Specifies the data source ID.
#Declaration
dataSourceId?: string
#Property Value
Type | Description |
---|---|
string | The data source ID. |
#dataSourceType Property
Specifies the data source type.
#Declaration
dataSourceType?: DevExpress.Analytics.Wizard.DataSourceType
#Property Value
Type | Description |
---|---|
Data |
The data source type. |
#federationDataSourceWizard Property
#Declaration
federationDataSourceWizard?: DevExpress.Analytics.Wizard.IFederationDataSourceWizardState
#Property Value
Type |
---|
IFederation |
#jsonDataSourceWizard Property
Specifies the JSON data source settings.
#Declaration
jsonDataSourceWizard?: DevExpress.Analytics.Wizard.IJsonDataSourceWizardState
#Property Value
Type | Description |
---|---|
IJson |
The JSON data source settings. |
#objectDataSourceWizard Property
Specifies the object data source settings.
#Declaration
objectDataSourceWizard?: DevExpress.Analytics.Wizard.IObjectDataSourceWizardState
#Property Value
Type | Description |
---|---|
IObject |
The object data source settings. |
#predefinedDataSourceName Property
#Declaration
predefinedDataSourceName?: string
#Property Value
Type |
---|
string |
#sqlDataSourceWizard Property
Specifies the SQL data source settings.
#Declaration
sqlDataSourceWizard?: DevExpress.Analytics.Wizard.ISqlDataSourceWizardState
#Property Value
Type | Description |
---|---|
ISql |
The SQL data source settings. |