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

RadDateTimePicker BUG REPORT !!!

1 Answer 73 Views
Calendar, DateTimePicker, TimePicker and Clock
This is a migrated thread and some comments may be shown as answers.
Sherlock
Top achievements
Rank 1
Sherlock asked on 18 Jan 2014, 08:15 PM
Hi Telerik !
There is a bug with RadDateTimePicker.

1. Set RadDateTimePicker.Culture = ar-SA (To see Arabic date)
2. Run program.
3. Open drop down calendar.
4. Open year and month drop down list.
5. Now count how many months are there. There should be 12 months, but there is 11 months.

NOTE1: I should add that when you try to reach the missing month with left or right buttons, the object stucks, or drops the missing month.
NOTE2: Sometimes you can reach to missing month with FastForward or FastRewind buttons, but then another month will be lost.


I believe it is BUG !!!

1 Answer, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 22 Jan 2014, 04:44 PM
Hello Sherlock,

Thank you for contacting Telerik Support.

Our RadDateTimePicker supports Gregorian calendar only. The default calendar for CutureInfo("ar-SA") is UmAlQuraCalendar (a subset of the HijriCalendar), however, it also supports Gregorian calendars and if you change the Culture.Calendar to this type, you can use this culture in RadDateTimePicker:
CultureInfo ci =new CultureInfo("ar-SA");
GregorianCalendar calendar = new GregorianCalendar();
ci.DateTimeFormat.Calendar = calendar;
this.radDateTimePicker1.Culture = ci;

I hope this information helps. Should you have further questions, I would be glad to help.
 
Regards,
Desislava
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
Calendar, DateTimePicker, TimePicker and Clock
Asked by
Sherlock
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or