Skip to main content
All docs
V23.2

DxDataRequestOptions.ItemDataLoadingMode Property

Specifies whether to load data for items that are not displayed.

Namespace: DevExpress.DashboardBlazor

Assembly: DevExpress.Dashboard.v23.2.Blazor.dll

NuGet Package: DevExpress.Blazor.Dashboard

Declaration

[Parameter]
public ItemDataLoadingMode ItemDataLoadingMode { get; set; }

Property Value

Type Description
ItemDataLoadingMode

An ItemDataLoadingMode enumeration value that specifies whether to load data for items that are not displayed.

Available values:

Name Description
Always

Load all dashboard items.

OnDemand

Load dashboard items on demand.

Remarks

Use the ItemDataLoadingMode property to specify whether to load data for all items in a dashboard or only for visible items.

The component 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 component loads data as follows:

  • If you have more than one tab page, data is loaded only for the active page. The component loads the remaining dashboard items on demand (for instance, when you switch to another tab page).
  • If a dashboard has applied filters, hidden Master Filter items that affect the visible dashboard items are also loaded.
  • Dashboard items that are shown with the Display Item As Page option enabled are considered visible and data for all such items are requested when it is loaded the first time.
See Also