|
Tutorial - Special Dates
|
| | |
Calendar can have unlimited number of special dates.
For each special date you can set CSS class name and a ToolTip.
| | |
ASP.NET
<< | Thursday, July 24, 2008 | >> |
|
Special dates are marked in red.
July 4th has a special CSS class set.
|
<obout:Calendar runat="server">
<obout:SpecialDate Year="2006" Month="3" Day="20" ToolTip="Dentist appointment" /> <obout:SpecialDate Year="-1" Month="7" Day="4" ToolTip="Independence Day" CSSClass="indDay" />
</obout:Calendar>
|
| | |
C#
Use AddSpecialDate method. See documentation for details on this method.
Cal.AddSpecialDate(2006, 3, 20, "Dentist Appointment");
Cal.AddSpecialDate(-1, 7, 4, "Independence Day", "indDay");
| | |
| "We are really liking your grid.It is really a great control." |
Nauman Cheema |
| DHS |
| | |
|