Hi,
How can i make my calendar to behave like the calendar used in the sample from the following link.
The behavior i want is when Im in month view, I can swith to day view by clicking on the day slot in the scheduler.
Thanks,
Bermo
4 Answers, 1 is accepted
0
Accepted
Hi Bermo,
With Q1 2009 version, you can click on the date in Month View and you will be redirected to the corresponding day in Day View. This functionality is built-in and you don't need to do any extra coding to get it. You can try with the online demos. Please, see the attached screenshot for reference.
All the best,
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
With Q1 2009 version, you can click on the date in Month View and you will be redirected to the corresponding day in Day View. This functionality is built-in and you don't need to do any extra coding to get it. You can try with the online demos. Please, see the attached screenshot for reference.
All the best,
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Cheri Verdend
Top achievements
Rank 1
answered on 31 Jan 2010, 08:56 PM
How do I disable the link to DayView from the date in MonthView?
I have set <DayView UserSelectable="False" /> which prevents the DayView tab from being displayed at the top of the calendar. But users can still get into the DayView by clicking the date.
Thanks
I have set <DayView UserSelectable="False" /> which prevents the DayView tab from being displayed at the top of the calendar. But users can still get into the DayView by clicking the date.
Thanks
0
Hello Cheri,
You can disable the date headers with the following jQuery code:
And you can hide the today link with this css:
Greetings,
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
You can disable the date headers with the following jQuery code:
function pageLoad() { $telerik.$(".rsDateHeader").each(function(i) { $telerik.$(this).bind("click", function(e) { $telerik.cancelRawEvent(e); }); }); } And you can hide the today link with this css:
.rsToday { visibility:hidden !important; }Greetings,
Peter
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Cheri Verdend
Top achievements
Rank 1
answered on 01 Feb 2010, 02:16 PM
That worked great! Thanks for the quick reply.