SchedulerViewBuilder.AppointmentCollectorTemplate(TemplateName) Method
Specifies the client-side appointmentCollectorTemplate.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public SchedulerViewBuilder AppointmentCollectorTemplate(
TemplateName name
)
Parameters
Name | Type | Description |
---|---|---|
name | TemplateName | A template name. |
Returns
Type | Description |
---|---|
SchedulerViewBuilder | A reference to this instance after the method is called. |
Remarks
This method applies an external template to an appointment collector. Refer to External Templates for more information and code examples.
@(Html.DevExtreme().Scheduler()
.Views(views => {
views.Add().AppointmentCollectorTemplate(new TemplateName("mySchedulerView_appointmentCollectorTemplate"));
})
)
@using(Html.DevExtreme().NamedTemplate("mySchedulerView_appointmentCollectorTemplate")) {
<div>
Template content
</div>
}
See Also