Skip to main content
A newer version of this page is available. .

DashboardControl.ObjectDataSourceLoadingBehavior Property

Specifies how to load the object data sources available in the end-user application considering the application security.

Namespace: DevExpress.DashboardWpf

Assembly: DevExpress.Dashboard.v19.1.Wpf.dll

Declaration

public DocumentLoadingBehavior ObjectDataSourceLoadingBehavior { get; set; }

Property Value

Type Description
DocumentLoadingBehavior

A DocumentLoadingBehavior enumeration member that specifies whether to allow loading object data sources or prompt the user for confirmation.

Available values:

Name Description
Prompt

Ask for an end-user’s permission on every attempt to load an object data source in an application.

LoadAsIs

Allow loading any object data sources.

LoadSafely

Load object data sources in a safe mode (with their data member and data source settings cleared).

Remarks

The DashboardControl displays a warning on each attempt to load an object data source when retrieving the dashboard data. You can set the ObjectDataSourceLoadingBehavior option to LoadAsIs to suppress warning dialogs.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ObjectDataSourceLoadingBehavior property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also