corelibraries-devexpress-dot-dashboardweb-dot-datarequestoptions-f9969915.md
Gets or sets whether to load data for items that are not currently displayed.
Namespace : DevExpress.DashboardWeb
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public ItemDataLoadingMode ItemDataLoadingMode { get; set; }
Public Property ItemDataLoadingMode As ItemDataLoadingMode
| Type | Description |
|---|---|
| ItemDataLoadingMode |
A ItemDataLoadingMode enumeration value that specifies whether to load data for items that are currently invisible.
|
Available values:
| Name | Description |
|---|---|
| Always |
Load all dashboard items.
| | OnDemand |
Load dashboard items on demand.
|
You can access this nested property as listed below:
| Object Type | Path to ItemDataLoadingMode |
|---|---|
| ASPxDashboard |
.DataRequestOptions .ItemDataLoadingMode
| | DashboardExtensionSettings |
.DataRequestOptions .ItemDataLoadingMode
|
Use the ItemDataLoadingMode property to specify whether to load data for all items in a dashboard or only for visible items.
The control loads data for all dashboard items in a dashboard by default (the ItemDataLoadingMode property value is Always).
If you set the ItemDataLoadingMode property to OnDemand, the control loads data as follows:
See Also