This is a migrated thread and some comments may be shown as answers.

RadCalendar with the events popup

2 Answers 107 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
ravi shankar
Top achievements
Rank 1
ravi shankar asked on 09 Aug 2010, 11:36 AM
Hi telerik,

Is it possible to get the below functionality in rad calendar
1.The Events day(should get it from events module of sitefinity) should get highlighted like special day.
2.On mouse over the events day should list all the events occuring on that day(check the attached image).
3.Customizing the header of the rad calendar(check the attachedImage).

Can u please give me the solution for this.

2 Answers, 1 is accepted

Sort by
0
ravi shankar
Top achievements
Rank 1
answered on 09 Aug 2010, 11:41 AM
Hi
Here is the attached file
0
Maria Ilieva
Telerik team
answered on 12 Aug 2010, 12:19 PM
Hi ravi shankar,

1. Please refer to the following help topic:
http://www.telerik.com/help/aspnet-ajax/calendar_templatesdaytemplates.html
2. You could use the following code to set the day tooltip to show the current event object:
foreach(var row in rows)  
            {  
                e.Day.IsSelected = true;  
                e.Cell.ToolTip = row["rSubject"].ToString();  
                e.Cell.BackColor = System.Drawing.Color.LightGray;  
            }  

3.Refer to the following help topic:
http://www.telerik.com/help/aspnet-ajax/calendar_templatesheaderandfootertemplates.html


Regards,
Maria Ilieva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Calendar
Asked by
ravi shankar
Top achievements
Rank 1
Answers by
ravi shankar
Top achievements
Rank 1
Maria Ilieva
Telerik team
Share this question
or