| Issue 650: | my events does not render correctly | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Hello Adam, It is all Okay with the full calendar. I have a big problem is that events do not render correctly.. :( Take a look at the image please. This is urgent. Thanks
Oct 7, 2010
Project Member
#1
adamrs...@gmail.com
Status:
Reproducing
Oct 22, 2010
Hello Adam, Here is a runnable html file included in the attached zip. the code is quite messy sorry. It creates multiple agenda calendars in the same page. thanks in advance
Jan 1, 2011
thanks for posting the demo.
i've found that the problem lies in the dom manipulations you are doing after you initialize the calendar. the line...
$('#cal_v_17').find('div.fc-agenda-body div table tr th').addClass('white11');
...and the others like it are changing the height of the rows. fullcalendar isn't smart enough to pick up on this, and the event coordinates are miscalculated.
the solution is to apply your css directly in your stylesheet. for example...
.fc-agenda-body div table tr th {
/* the css for white11 */
}
...instead of manually applying the classname in javascript
hope this helps
Status:
Done
|
|
| ► Sign in to add a comment |