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

DxScheduler.DataStorage Property

Specifies the Scheduler’s data source.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public DxSchedulerDataStorage DataStorage { get; set; }

Property Value

Type Description
DxSchedulerDataStorage

The Scheduler’s data source.

Remarks

Use the DataStorage property to bind DxScheduler to a data source.

To create a new data storage:

Note

The DxSchedulerDataStorage object contains a built-in label and status collection. The scheduler uses built-in collections when label and status sources and mappings are not specified.

<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
    <DxSchedulerWeekView ShowWorkTimeOnly="true"></DxSchedulerWeekView>
</DxScheduler>

@code {
    DxSchedulerDataStorage DataStorage = new DxSchedulerDataStorage() {
        AppointmentsSource = AppointmentCollection.GetAppointments(),
        AppointmentMappings = new DxSchedulerAppointmentMappings() {
            Type = "AppointmentType",
            Start = "StartDate",
            End = "EndDate",
            Subject = "Caption",
            AllDay = "AllDay",
            Location = "Location",
            Description = "Description",
            LabelId = "Label",
            StatusId = "Status",
            RecurrenceInfo = "Recurrence"
        }
    };
}

Scheduler Appointment Mappings

Run Demo: Scheduler — Week View

See Also