Rank: Newbie Groups: Member
Joined: 3/26/2008 Posts: 1
|
I have two questions about your calendar control:
Are your controls C# or VB?
For the calendar control, is it possible for the users of a site to hover over an event that has been scheduled and have a pop-up hint show up revealing more details about that particular scheduled event?
Thanks in advance,
Mikeeb
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The control is written in C# but it should not matter to you since it works with both C# and VB. All sample code are provided both in C# and VB code.
It's possible to have a calendar with popup hints but you will need to do it by yourself. The easiest way for you to do it is through RenderDay event, for example, you can do something like:
e.Writer.Write("<span title='hello!'>" + e.Day.DayNumberText + "</span>");
This will give you a "hello" tooltip for each day cell. Obviously you will need to change the "hello" based on your logic.
Thanks
|