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

[Solved] Rad calendar MultiView column & Row

1 Answer 128 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Balaji
Top achievements
Rank 1
Balaji asked on 27 Apr 2009, 06:29 AM
Hi,

In rad calendar i'm using multiview row and column to display all months in a year, it is displaying 12 months from the current month i.e.,(Apr 09 - mar2010) instead of i need (jan09 - dec09) is there any possiblity to do like this....


Thank you in advance 

by Balaji.T

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 27 Apr 2009, 07:09 AM
Hi Balaji,

One suggestion is setting the FocusedDate property of RadCalendar in order to show required months in Multi-Month View. See the example given below.
[aspx]
 
<telerik:radcalendar id="RadCalendar1" runat="server" FocusedDate="2009-01-01"
</telerik:radcalendar> 

You can also set this property from code behind.
[cs]
 
protected void Page_Load(object sender, EventArgs e) 
    DateTime dt = new DateTime(2009, 01, 01); 
    RadCalendar1.FocusedDate = (DateTime) dt; 

Thanks,
Shinu.
Tags
Calendar
Asked by
Balaji
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or