Table of Contents
FooterTemplate Property

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

Syntax
 public ClientTemplate FooterTemplate { get; set; }
Remarks

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

Following is an example of putting HTML into footer 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