I am using jQuery FullCalendar (http://arshaw.com/fullcalendar/docs/).
In the "Month" view, I made all events the same size regardless of their name.
Now I want all the cells to be the same size, no matter how many events exist for a particular date. If there are more events in the cell than can fit in the cell, I just want to show only those who can fit in the cell and add something like: "2 more ..." at the bottom of the cell.
To do this, I need to know how FullCalendar determines the size of the cells based on the number of events that are displayed in the cell, and how it resizes the cells when adding new events using drag & drop. I see in the html code that the events do not actually fit in the cell table, but it seems that they are in the cell using absolute positioning, so I assume some javascript is also used to calculate the cell size.
Perhaps I should mention that I do not put the size of the calendar, I need it to use the 100% width of its default container.
source
share