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

[Solved] Month view timeslot with day link

4 Answers 100 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Bermo
Top achievements
Rank 1
Bermo asked on 11 Mar 2009, 11:49 AM
Hi,

How can i make my calendar to behave like the calendar used in the sample from the following link.

http://demos.telerik.com/aspnet-ajax-beta/scheduler/examples/outlook2007/defaultcs.aspx

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

Sort by
0
Accepted
Peter
Telerik team
answered on 16 Mar 2009, 08:21 AM
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.
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
0
Peter
Telerik team
answered on 01 Feb 2010, 07:47 AM
Hello Cheri,

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.
Tags
Scheduler
Asked by
Bermo
Top achievements
Rank 1
Answers by
Peter
Telerik team
Cheri Verdend
Top achievements
Rank 1
Share this question
or