I am wondering if it's possible to just show the time reserved on the calendar, not the title of the event, using jQuery’s FullCalendar plug-in?

Thank you very much for your help!

link|improve this question

58% accept rate
Can you clarify what you mean by "time reserved" and "want to show on the calender" -- where? – Gary Green May 12 '11 at 18:21
feedback

2 Answers

up vote 1 down vote accepted

Somewhere along the lines of 3665 inside the fullCalendaer normal version look for this code

(!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>" +

Remove

"<span class='fc-event-title'>" + htmlEscape(event.title) + "</span>" +

So that it still makes sense i jscript syntax and viola! no more title just time.

link|improve this answer
Yes this will work, but now everytime you upgrade fullcalendar you have to remember to remove this line. Better to just hide it as @Doomsday suggested. – sdolan May 12 '11 at 22:25
Yes- but if he wanted to customize it even further(at a higher and more efficient level)- he knows where to start. jQuery is the easiest though, i agree. – ppumkin May 13 '11 at 5:07
Thank you! It does work! If you don't mind i have one more question: i'm writing an asp.net mvc room reservation app where i'm trying to integrate the fullcalendar. so when someone reserves a room for an event, they choose a time for the event, give it a title, and the system assigns a reservation ID for the event. Then on the dayslot of the calendar we see the time reserved for the event and the title of this event. So I'd like to display a reservation ID instead of the title of the event. Is it possible? Thank you so much! – Greg May 13 '11 at 16:00
Yea I could. but I just done feel like it since I do not even get any votes or points.. for good constructive information, which was correct in the first place.. sorry man- maybe later when i am really bored. – ppumkin May 13 '11 at 16:04
@ppumkin: All I was saying that if it's just this that you wanted to change, it's better to just manipulate it with css. Don't get me wrong, I took the fullcalendar source and extensively modified it to get it to do with what I wanted. It just made upgrades a pain, which is all I wanted to point out. I upvote you, as this is a valid solution under the right circumstances. – sdolan May 13 '11 at 19:18
show 2 more comments
feedback

You can do everything you want with altering CSS class :

To hide event title:

.fc-event-time {
  display: none;
}

If you want to keep time of events but keep the same background between title and body, you should unset opacity:

.fc-event-vert .fc-event-bg {
  opacity: 0;
}
link|improve this answer
Thank you for such a quick response! – Greg May 12 '11 at 20:51
In my fc.css I have: – Greg May 12 '11 at 20:52
Sorry, there is something wrong with the comment box. I just wanted to ask you, if i have these lines in my fc.css: .fc-event-time, .fc-event-title { padding: 0 1px; } and as you recommended, i deleted the '.fc-event-title' line and put the 'display: none;' instead, I still have the title of the event on the day slot of the calendar displayed. Am I doing something wrong here? Thank you very much for your help! – Greg May 12 '11 at 20:57
In the day slot of the calendar, all events title are shown. What did you except exactly? If you want to hide dayslot, you have to set FullCalendar option "allDaySlot: false" – Doomsday May 13 '11 at 14:38
i don't want to hide dayslot. What i would like to do is just to show the time reserved on a dayslot of the calendar, not the title of the event. Instead of the title of event, I would like the reservation ID # displayed. Is it possible? thank you everyone helping me! – Greg May 13 '11 at 15:08
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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