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

AppointmentTitleFormat persian text

5 Answers 98 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Mohammad
Top achievements
Rank 1
Mohammad asked on 06 Nov 2015, 05:00 PM

hi,

in my app i write subject "آقای حقیقت" but in Appointment Title it wrote "حقیقت آقای"

actually in the Appointment Title the Expression reversed,why?

5 Answers, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 11 Nov 2015, 09:37 AM
Hello Mohammad,

Thank you for writing.

I confirm that it is an issue with RadScheduler. I have logged it in our feedback portal. You can track its progress, subscribe for status changes and add your vote/comment to it on the following link - feedback item.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to disable HTML-like text rendering in the AppointmentFormatting event:

private void radScheduler1_AppointmentFormatting(object sender, SchedulerAppointmentEventArgs e)
{
    e.AppointmentElement.UseHtml = false;
}

 

I hope this information helps. Should you have further questions I would be glad to help.
 
Regards,
Dess
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Ramin
Top achievements
Rank 1
answered on 15 Sep 2016, 03:04 PM

Hi Mohammad,

I see your application screenshot , how do you  customize radschedulerad to  persian.

I set Globalization but it's still in Gregory , any suggestion will be helpful.

thanks.

 

0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 20 Sep 2016, 06:43 AM
Hello Ramin,

Thank you for writing.  

RadScheduler supports localization: http://docs.telerik.com/devtools/winforms/scheduler/localization/translating-strings 

The following forum post may be suitable for your case: http://www.telerik.com/forums/shamsi-and-persian-scheduler

If you are experiencing any further difficulties, please specify in details what is the exact requirement that you are trying to achieve. Thus, we would be able to investigate the precise case and assist you further. Thank you.
 
I hope this information helps. Should you have further questions I would be glad to help.

Regards,
Dess
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.
0
sadegi
Top achievements
Rank 1
answered on 29 Nov 2016, 09:05 PM

Hi to All

I have Same Problem Like Mohammad

Appointment Title was reversed

And I use this Code

 

private void radScheduler1_AppointmentFormatting(object sender, SchedulerAppointmentEventArgs e)
{
    e.AppointmentElement.UseHtml = false;
}

 

Bus after use it i have new proble

 

0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 01 Dec 2016, 10:38 AM
Hello Jafar,

Thank you for writing.  

The provided workaround for the referred feedback item disables the HTML-like text formatting. Due to the nature of the HTML-like Text Formatting, it does not support RightToLeft

If you specify the AppointmentTitleFormat property to display the subject information, it is rendered as expected: 
this.radScheduler1.AppointmentTitleFormat = "{2}";


I hope this information helps. Should you have further questions I would be glad to help.

Regards,
Dess
Telerik by Progress
Telerik UI for WinForms is ready for Visual Studio 2017 RC! Learn more.
Tags
Scheduler and Reminder
Asked by
Mohammad
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Ramin
Top achievements
Rank 1
sadegi
Top achievements
Rank 1
Share this question
or