Skip to main content

BuilderFactoryExtensions.BootstrapScheduler(BuilderFactory, String) Method

Creates a Scheduler control with a specified name.

Namespace: DevExpress.AspNetCore

Assembly: DevExpress.AspNetCore.Bootstrap.v18.2.dll

Declaration

public static BootstrapSchedulerBuilder BootstrapScheduler(
    this BuilderFactory builderFactory,
    string name
)

Parameters

Name Type Description
builderFactory BuilderFactory

A BuilderFactory object providing access to Scheduler settings.

name String

A control name.

Returns

Type Description
BootstrapSchedulerBuilder

A builder for a Scheduler control.

Remarks

IMPORTANT

Bootstrap Controls for ASP.NET Core are in maintenance mode. We don’t add new controls or develop new functionality for this product line. Our recommendation is to use the ASP.NET Core Controls suite.

The code sample below demonstrates how you can use this method to create a Scheduler control.

@model IEnumerable

@(Html.DevExpress()
    .BootstrapScheduler("schedulerDataBinding")
    .Start(new DateTime(2018, 05, 21))
    .Storage(storage => storage
        .Appointments(appointments => appointments
            .Mappings(map => map
                .AppointmentId(a => a.Id)
                .Subject(a => a.Text)
                .Start(a => a.StartDate)
                .End(a => a.EndDate))
    )))
    .Routes(routes => routes
        .MapRoute(r => r
            .Action("DataBinding")
            .Controller("Scheduler")))
    .BindAppointments(Model))
NOTE

See Online Demos: Refer to the https://demos.devexpress.com/aspnetcore-bootstrap/Scheduler-DataBindingAndEditing online demo for detailed information on the Scheduler control’s features and API.

See Also