Issue 863: Reducing height using eventRender in version 1.5
Status:  Done
Owner: ----
Closed:  Mar 2011
Reported by oliver.k...@gmail.com, Mar 23, 2011
Hi, I'd previously been using eventRender to render month view events in a single line:

    eventRender: function(event, jqElement, view) {
	  if ((view.name == 'month') || ((view.name == 'agendaWeek') && event.allDay)) {
        jqElement.height(15);
      }
    }

However, this produces a glitch in the new version 1.5 where text falls outside of the box. See attachment. Is there any way of fixing this?



text_problem.png
34.4 KB   View   Download
Mar 23, 2011
#1 oliver.k...@gmail.com
Fixed:

Added 

.fc-event-inner {
  overflow: hidden;
}

to my styles as per comment at http://blog.arshaw.com/1/post/2011/03/fullcalendar-15-released.html
Mar 24, 2011
#2 f.camon....@gmail.com
Hi,

i've got the same issue with long titles in the new version 1.5

Thx for sharing this patch !
Mar 24, 2011
Project Member #3 adamrs...@gmail.com
yeah, have to do an overflow:hidden. thanks!
Status: Done