Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I have a very similar requirement (show tooltip on hover) and i had to remove the start and end time from the event's header. I have done it as below. The magic gets done by the <code>timeFormat: {....}</code> option block ():</p> <pre><code>timeFormat: { // for agendaWeek and agendaDay do not display time in title // time already displayed in the views agenda: '', // for all other views (19:00 - 20:30) '': 'H:mm{ - H:mm}' }, </code></pre> <p>Note that I am using agenda views, and I remove the time components only for the week and the day views.</p> <p><strong>NOTE:</strong> As per my requirements, I did not have to remove the event-title. <strong><em>Question to you</em></strong>.... what would you display as the event header, if not the time AND the title? Would an empty header look a bit odd? Anyways.... let me know if you have any further issues.</p> <p>Sample screen shot link: <a href="http://img441.imageshack.us/img441/9587/calendarview.jpg" rel="nofollow noreferrer">alt text http://img441.imageshack.us/img441/9587/calendarview.jpg</a>.</p> <p>A sample snippet of what options I had used:</p> <pre><code>$(document).ready(function() { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); $('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay' }, timeFormat: { // for agendaWeek and agendaDay do not display time in title // time already displayed in the view agenda: '', // for all other views (19:00 - 20:30) '': 'H:mm{ - H:mm}' }, columnFormat: { month: 'dddd', // Monday week: 'dddd, MMM dS', // Monday, July 13th day: 'dddd, MMM dS' // Monday, July 13th }, axisFormat: 'H:mm', allDaySlot: false, slotMinutes: 30, defaultEventMinutes: 22, editable: false, aspectRatio: 2, }); }); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload