I have events that contain both the event title and event time. However, I need to have 'fc-event-title' show up first in the event, before 'fc-event-time'. Right now it's the opposite. How would I go about switching this?

Any help is greatly appreciated.

link|improve this question

please make it more clear that your talking about DOM elements called fc-event-title and fc-event-time. – Raynos May 9 '11 at 23:04
i think you will have to edit the main jscript in the skeleton() function and swap it in there- might sound hard work but will save hacking it with sytles or jquery. – ppumkin May 10 '11 at 8:00
@ppumkin Thanks for the tip. I was able to solve the problem by editing fullcalendar.js, and switcing the order of fc-event-time and fc-event-title on lines 3665-3670. – Jeremy May 10 '11 at 19:05
Well done! I added an answer so that other people will know how to do this. If you dont mind. – ppumkin May 10 '11 at 19:16
feedback

2 Answers

up vote 2 down vote accepted

User @ppumkin suggested that I edit the core javascript (fullcalendar.js), which proved to be the solution. I took the following item on line 3665:

(!event.allDay && seg.isStart ?
"<span class='fc-event-time'>" +
htmlEscape(formatDates(event.start, event.end, opt('timeFormat'))) +
"</span>"
:'') +
"<span class='fc-event-title'>" + htmlEscape(event.title) + "</span>" +

And replaced it with the following:

"<span class='fc-event-title'>" + htmlEscape(event.title) + "</span>" +    
(!event.allDay && seg.isStart ?
"<span class='fc-event-time'>" +
htmlEscape(formatDates(event.start, event.end, opt('timeFormat'))) +
"</span>"
:'') +

Basically, I just put the 'fc-event-title' span before 'fc-event-time'.

link|improve this answer
Yea - i thought mine was wrong :D Good work- i think a few people will use this one! :) – ppumkin May 11 '11 at 5:21
Exactly the help I needed. Saved me a ton of time searching for this in the fullcalendar.js – Jason Gennaro Jan 4 at 2:58
feedback

How far appart can the title be from the time?

If you don't mind it in the right hand corner you can just float the time right.

as all the times have a class called fc-event-time <span class="fc-event-time">5p</span>

.fc-grid .fc-event-time {
    float: right;
    font-weight: bold;
}
link|improve this answer
Well, the thing is I have the title and time split vertically already, like so. So I'm not sure if a float would be the solution. – Jeremy May 9 '11 at 23:36
@Jeremy can you show what you have? A screenshot would be good also. – chobo2 May 10 '11 at 3:06
Hi chobo2, this is what an event looks like. I've solved this issue by editing the core Javascript. See my comment on the original question. Thanks for your help. – Jeremy May 10 '11 at 19:10
@Jeremy- Thats good you where able to figure it out. Just remember if you ever update you will have to remember to readd those changes. – chobo2 May 10 '11 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.