search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Culture/Localization support for DayPilot MVC scheduler

Asked by DG
10 years ago.

Hi Dan,

Is localization supported in the MVC scheduler control? If yes then can you please explain how do i do that in brief, or if there is any other article you can point me to?

I found this for the Calendar >> http://www.daypilot.org/calendar-localization.html
But no property I see in either the DayPilotScheduler or DayPilotSchedulerConfig classes.

Thanks.

Answer posted by Dan Letecky [DayPilot]
10 years ago.

At this moment it uses the culture of the current thread.

I.e. you can set it globally in web.config:

<configuration>
    <system.web>
        <globalization culture="en-US"/>
    </system.web>
</configuration>

or in the view controller (this is more of a workaround):

Thread.CurrentThread.CurrentCulture = new CultureInfo("de-de");

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.