Hi Isomorphix,
The "firstDayOfWeek" attribute looks to still have an issue. While the calendar will start at the nominated "firstDayOfWeek" when the Next or Previous week is select from the date picker the calendar reverts back to starting on "Sunday".
I'm using the 12.0 showcase to see this behavior. Am I missing something?
Many Thanks,
Colin.
https://www-demos.smartclient.com/sm...simpleDayLanes
var lanes = [
{ name: "charlesMadigen", title: "Charles Madigen", width: 200 },
{ name: "tamaraKane", title: "Tamara Kane", width: 200 },
{ name: "darcyFeeney", title: "Darcy Feeney", width: 200 },
{ name: "kaiKong", title: "Kai Kong", width: 200 },
{ name: "shellyFewel", title: "Shelly Fewel", width: 200 }
];
isc.Calendar.create({
ID: "calendar",
top: 40,
data: dayLaneData,
lanes: lanes,
showWeekView: true,
showMonthView: false,
showTimelineView: false,
chosenDate: new Date(),
showDayLanes: true,
canEditLane: true,
firstDayOfWeek: 1
});
The "firstDayOfWeek" attribute looks to still have an issue. While the calendar will start at the nominated "firstDayOfWeek" when the Next or Previous week is select from the date picker the calendar reverts back to starting on "Sunday".
I'm using the 12.0 showcase to see this behavior. Am I missing something?
Many Thanks,
Colin.
https://www-demos.smartclient.com/sm...simpleDayLanes
var lanes = [
{ name: "charlesMadigen", title: "Charles Madigen", width: 200 },
{ name: "tamaraKane", title: "Tamara Kane", width: 200 },
{ name: "darcyFeeney", title: "Darcy Feeney", width: 200 },
{ name: "kaiKong", title: "Kai Kong", width: 200 },
{ name: "shellyFewel", title: "Shelly Fewel", width: 200 }
];
isc.Calendar.create({
ID: "calendar",
top: 40,
data: dayLaneData,
lanes: lanes,
showWeekView: true,
showMonthView: false,
showTimelineView: false,
chosenDate: new Date(),
showDayLanes: true,
canEditLane: true,
firstDayOfWeek: 1
});
Comment