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

How to display the Hebrew Calendar?

11 Answers 362 Views
DatePicker and DateSelector
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Eitan
Top achievements
Rank 1
Eitan asked on 20 Sep 2013, 02:09 AM
Hello,
I am using a RadDatePicker in my page (Windows phone 8 application, XAML & C#).
<telerikInput:RadDatePicker x:Name="DatePicker"
                            HorizontalAlignment="Center"
                            VerticalAlignment="Center"
                            Width="307" />

I would like the control to display the Hebrew calendar.

I tried to set the Culture:
DatePicker.Culture = new CultureInfo( "he-IL" );

The RadDatePicker shows the Hebrew names (day & month) of the Gregorian calendar, but not the Hebrew Calendar. 

Is it possible to show a "real" Hebrew calendar, and if so how do I do that?

Thanks
EitanB

11 Answers, 1 is accepted

Sort by
0
Todor
Telerik team
answered on 20 Sep 2013, 07:46 AM
Hello Eitan,

Thank you for your question.

The Gregorain calendar is the default calendar for the he-IL culture, so if you need to display Hebrew you need to specify this explicitely:

CultureInfo info = new CultureInfo("he-IL");
info.DateTimeFormat.Calendar = new HebrewCalendar();
datePicker.Culture = info;

Let me know if you need further assistance.
 
Regards,
Todor
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Eitan
Top achievements
Rank 1
answered on 20 Sep 2013, 08:08 PM
Hi,

I created a test application that includes the RadDatePicker

<telerikInput:RadDatePicker x:Name="DatePicker"
                            HorizontalAlignment="Center"
                            VerticalAlignment="Center"
                            Width="307" />

and the code:

public MainPage()
    {
    InitializeComponent();
 
    var cultureInfo = new CultureInfo( "he-IL" );
    cultureInfo.DateTimeFormat.Calendar = new HebrewCalendar();
    DatePicker.Culture = cultureInfo;
 
    // Sample code to localize the ApplicationBar
    //BuildLocalizedApplicationBar();
    }

However when I ran the application, and change the year the application crashes.

Hopefully you can duplicate problem.

EitanB



0
Todor
Telerik team
answered on 25 Sep 2013, 07:46 AM
Hi Eitan,

Thank you for writing back.

I managed to reproduce the described issue and it will be fixed with our Beta release next week.

I have updated your telerik points for bringing this issue to our attention.

Regards,

Todor
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Eitan
Top achievements
Rank 1
answered on 25 Sep 2013, 08:05 AM
Hi,
Is there a way you can send me a replacement DLL (s) in the meantime?

Thanks
Eitan
0
Deyan
Telerik team
answered on 25 Sep 2013, 08:19 AM
Hello Eitan,

Thanks for writing.

We can send you a private build containing the latest fixes.

To be able to do this we would like to request you to open a new support ticket regarding the same issue where we can attach the files.

Thanks for your time.

Regards,
Deyan
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Eitan
Top achievements
Rank 1
answered on 25 Sep 2013, 08:25 AM
The Telerik system will not let me open a support ticket. I am over my 1 year support period. Though, I am a Nokia DVLUP, and should have gotten another year. Please let me know how can we resolve this.

Thanks for you quick respo
EitanB
0
Deyan
Telerik team
answered on 25 Sep 2013, 03:50 PM
Hi Eitan,

We are currently looking into your case and will get back to you soon.

Regards,
Deyan
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Eitan
Top achievements
Rank 1
answered on 27 Sep 2013, 05:37 PM
Any progress on my issue?

 

Regards,

EB



0
Deyan
Telerik team
answered on 30 Sep 2013, 08:15 AM
Hi Eitan,

Thanks for writing back.

You've got an email sent from a colleague of mine regarding your case. Please check it out and see if you can provide us with the information needed so that we can proceed further.

Regards,
Deyan
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Eitan
Top achievements
Rank 1
answered on 01 Oct 2013, 04:44 PM

Hi,

I fixed the status of my account. Please let me know how can we finalize this issue.



Thanks,

Eitan

0
Todor
Telerik team
answered on 02 Oct 2013, 11:08 AM
Hi Eitan,

It is great that you have fixed your status so that you can now take advantage of all benefits of the valid licence. 

As to the issue, the fix have been included in the Beta version that we have released. You can download it from your account. It's in the Beta section.
 
Regards,
Todor
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
Tags
DatePicker and DateSelector
Asked by
Eitan
Top achievements
Rank 1
Answers by
Todor
Telerik team
Eitan
Top achievements
Rank 1
Deyan
Telerik team
Share this question
or