Skip to main content

BuilderFactoryExtensions.BootstrapScheduler<TAppointment>(BuilderFactory) Method

Creates a strongly-typed Scheduler control.

Namespace: DevExpress.AspNetCore

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

Declaration

public static BootstrapSchedulerBuilder<TAppointment> BootstrapScheduler<TAppointment>(
    this BuilderFactory builderFactory
)

Parameters

Name Type Description
builderFactory BuilderFactory

A BuilderFactory object providing access to Scheduler settings.

Type Parameters

Name Description
TAppointment

An appointment type.

Returns

Type Description
BootstrapSchedulerBuilder<TAppointment>

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.

``` cshtml model IEnumerable

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