KaxTimeViewShowHeader Property |
Namespace: Kettic.AspNet.Controls
Use the ShowHeader property to specify whether the header section is displayed in the KaxTimeView control.
You can control appearance of the header section by setting the HeaderStyle property. The contents of the header section are controlled by the HeaderTemplate property.
The following code example demonstrates how to use the ShowHeader property to display the header section in the KaxTimeView control.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Assembly="KaxCalendar.Net2" Namespace="Kettic.AspNetControls" TagPrefix="kaxCln" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <kaxCln:KaxTimePicker ID="KaxTimePicker1" runat="server"> <TimeView ShowHeader="true"> <HeaderTemplate> <asp:Label ID="Label1" runat="server" Text="Hello Header!"></asp:Label> </HeaderTemplate> </TimeView> </kaxCln:KaxTimePicker> </div> </form> </body> </html>