Skip to main content
ID
Max
Min

SchedulerBuilder.AppointmentTemplate(TemplateName) Method

Specifies the client-side appointmentTemplate.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public SchedulerBuilder AppointmentTemplate(
    TemplateName name
)

Parameters

Name Type Description
name TemplateName

A template name.

Returns

Type Description
SchedulerBuilder

A reference to this instance after the method is called.

Remarks

This method applies an external template to an appointment. Refer to External Templates for more information and code examples.

@(Html.DevExtreme().Scheduler()
    .AppointmentTemplate(new TemplateName("myScheduler_appointmentTemplate"))
)

@using(Html.DevExtreme().NamedTemplate("myScheduler_appointmentTemplate")) {
    <div>
        Template content
    </div>
}
See Also