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

SchedulerBuilder.DropDownAppointmentTemplate(TemplateName) Method

OBSOLETE

This Method is obsolete now.

Specifies the client-side dropDownAppointmentTemplate.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

[Obsolete("")]
public SchedulerBuilder DropDownAppointmentTemplate(
    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 a drop-down appointment. Refer to External Templates for more information and code examples.

@(Html.DevExtreme().Scheduler()
    .DropDownAppointmentTemplate(new TemplateName("myScheduler_dropDownAppointmentTemplate"))
)

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