Issue 2306: I want to make a calendar that displays 14days as one line.
Status:  Duplicate
Merged:  issue 692
Owner: ----
Closed:  Oct 2014
Reported by csh.1...@gmail.com, Oct 2, 2014

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?
Oct 30, 2014
Project Member #1 adamrs...@gmail.com
i can't debug your custom code but i can refer you to an issue on the issue tracker that deals with this exact problem (merging this ticket...)
Status: Duplicate
Mergedinto: 692