Skip to main content

BuilderFactoryExtensions.BootstrapScheduler(BuilderFactory) Method

Creates a Scheduler control.

Namespace: DevExpress.AspNetCore

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

Declaration

public static BootstrapSchedulerBuilder BootstrapScheduler(
    this BuilderFactory builderFactory
)

Parameters

Name Type Description
builderFactory BuilderFactory

A BuilderFactory object providing access to Scheduler settings.

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<TODOTask>

@(Html.DevExpress()
    .BootstrapScheduler<TODOTask>()
    .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))
See Also