Hi,
(using Telerik.Web.UI 2015.1.401.45)
I have my RadSchedular setup like this:
<telerik:RadScheduler ID="RadScheduler1" SelectedView="WeekView" OnClientDataBound="wsOnSchedulerDataBound" OnClientAppointmentsPopulating="wsOnClientAppointmentsPopulating" OnClientNavigationComplete="wsOnClientNavigationComplete" OnClientAppointmentInserting="wsOnClientAppointmentInserting" OnClientAppointmentEditing="wsOnClientAppointmentEditing" OnClientAppointmentDeleting="wsOnClientAppointmentDeleting" OverflowBehavior="Expand" StartInFullTime="true" StartEditingInAdvancedForm="false" AllowDelete="true" AllowEdit="true" AllowInsert="true" EnableRecurrenceSupport="false" AppointmentStyleMode="Default" Culture="nl-NL" FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" runat="server"> <WebServiceSettings Path="wsPlanningServices.asmx" ResourcePopulationMode="ServerSide" /> <AdvancedForm Modal="true"></AdvancedForm> <AppointmentContextMenuSettings EnableDefault="true" /> <TimeSlotContextMenuSettings EnableDefault="true" /> <DayView HeaderDateFormat="dd-MM-yyyy" /> <WeekView HeaderDateFormat="dd-MM-yyyy" ColumnHeaderDateFormat="ddd d MMM" /> <MonthView HeaderDateFormat="MMMM yyyy" /> <AgendaView HeaderDateFormat="dd-MM-yyyy" /></telerik:RadScheduler>As you can see, I explicitly set the culture to "nl-NL" and also specified a custom WeekView.ColumnHeaderDateFormat.
Now the column headers should read as eg. "Vr 15 juni", but instead they are rendered as "Fri 19 Jun".
So the columns headers are still displayed in English, despite the explicit "nl-NL" culture setting.
What am I missing here?
