Skip to main content

PopoverBuilder.TitleTemplate(TemplateName) Method

Specifies the client-side titleTemplate.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public PopoverBuilder TitleTemplate(
    TemplateName name
)

Parameters

Name Type Description
name TemplateName

A template name.

Returns

Type Description
PopoverBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Popover()
    .TitleTemplate(new TemplateName("myPopover_titleTemplate"))
)

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