Table of Contents
TitleTemplate Property

Specifies any customized HTML to be displayed in a calendar's title area.

Syntax
 public ClientTemplate TitleTemplate { get; set; }
Remarks

Use this property to define customized HTML in title area. You can include any HTML tags and define your own variable by using var keyword.

Following is an example of putting HTML into title area. In template, it defines a built in variable today and its displaying format (MM/dd/yyyy):
HTML
<div style="FONT-WEIGHT: bold; FONT-SIZE: 11px; FONT-FAMILY: Tahoma"">
        <img src="{img:00040106}"> Today: {var:today:MM/dd/yyyy}
</div>
See Also