Normaly the calendar display 7 cells(days) a week.
But I want to display 14days as a week.
ver 2.1.1
7167 line
=====================================
for (var dayIndex=0, cellIndex=0; dayIndex<7; dayIndex++) {
dayToCellMap[dayIndex] = cellIndex;
isHiddenDayHash[dayIndex] = $.inArray(dayIndex, hiddenDays) != -1;
if (!isHiddenDayHash[dayIndex]) {
cellToDayMap[cellIndex] = dayIndex;
cellIndex++;
}
}
=====================================
** dayindex
** cellindex
** cellsPerWeek
I tried that was changing dayindex as '14' and some another numbers.
And I saw it worked.
But the cells of Event were a little bit collapsed in the case of pulled with Events.
Is there anything a good giude for changing disply of days?
Mergedinto: 692