Date Time Text Box Doesn't Supporting Arabic Locale

Any one who used DateTimeTextBox which uses Arabic locale, i need Arabic support for this control. and as well as the Scheduler Control with Arabic Locale Support.
Thanks have nice day

2 Replies

VR Varalakshmi R.S Syncfusion Team August 17, 2012 04:42 AM UTC

Hi SmartGuy,

 

Thanks for contacting syncfusion forums.

 

Arabic culture can be set by using "CultureInfo.CreateSpecificCulture("ar")" culture settings. Please refer the below code snippet to achieve this,

<code>

[PageLoad]

DateTimeTextBox1.CultureSource = CultureSourceType.UserOverride;
DateTimeTextBox1.UserOverrideCulture = CultureInfo.CreateSpecificCulture("ar");

</code>

 

We have forwarded the Schedule control related query to Schedule development team and they will update their response for this query by end of the day.

 

Regards,

Varalakshmi

 



SG Saravanan G Syncfusion Team August 20, 2012 06:56 AM UTC

Hi SmartGuy,

Thanks for contacting syncfusion forums.

Arabic culture can be set by using “UserOverrideCulture” Property settings. Please refer the below code snippet.

<code>

[ASPX]

<Syncfusion:Schedule runat="server" ID="Schedule1" CultureSource="UserOverride" UserOverrideCulture="ar-SA"  
</Syncfusion:Schedule>
 

<code>

Please find the user guidance in below link.

 http://help.syncfusion.com/UG/User%20Interface/ASP.NET/Schedule/default.htm#!documents/46localization.htm

 

Regards,

Saravanan G


Loader.
Up arrow icon