The single VCR buttons go foward or backward month by month, but the double VCR buttons go forward or backward 3 months at a time. Can RadDatePicker be configured to make the double VCR buttons go year-by-year? This is consistent with other javascript calendars.
Thanks.
4 Answers, 1 is accepted
0
Hi,
You can set the FastNavigationStep property of the RadCalendar to 12 in order to change the calendar view year-by-year.
Regards,
Pavlina
Telerik
You can set the FastNavigationStep property of the RadCalendar to 12 in order to change the calendar view year-by-year.
Regards,
Pavlina
Telerik
See What's Next in App Development. Register for TelerikNEXT.
0

An
Top achievements
Rank 1
answered on 10 Apr 2015, 04:01 PM
Thank you, Pavlina. Is it possible to set the calendar in the RadDatePicker the same way? Advance by the whole year?
0
Hello,
In order to do the same for RadDatePicker control you should set Calendar-FastNavigationStep as shown below:
Regards,
Pavlina
Telerik
In order to do the same for RadDatePicker control you should set Calendar-FastNavigationStep as shown below:
<
telerik:RadDatePicker
ID
=
"RadDatePicker1"
runat
=
"server"
Width
=
"200px"
AutoPostBack
=
"false"
Calendar-FastNavigationStep
=
"12"
DateInput-EmptyMessage
=
""
MinDate
=
"01/01/1000"
MaxDate
=
"01/01/3000"
>
</
telerik:RadDatePicker
>
Regards,
Pavlina
Telerik
See What's Next in App Development. Register for TelerikNEXT.
0

An
Top achievements
Rank 1
answered on 13 Apr 2015, 11:44 AM
Thank you, that works perfectly!