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

How to get the date from RadScheduler

1 Answer 153 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Gina
Top achievements
Rank 1
Gina asked on 22 Sep 2009, 02:16 PM
When the calendar runs it default to the current month, I need to gain access to those dates... can someone point me in the right direction on where I can get the start and end date of that calendar.

Thanks so much

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 24 Sep 2009, 01:20 PM
Hi Gina,

Please, try using VisibleRangeStart and VisibleRangeEnd:
 protected void Page_Load(object sender, EventArgs e)  
    {  
        Response.Write("Start: " + RadScheduler1.VisibleRangeStart + "</br>");  
        Response.Write("End: " + RadScheduler1.VisibleRangeEnd + "</br>");  
    } 


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