tags:

views:

62

answers:

1

Dear Sirs,

Very sorry about this!! The product I am talking about is Adam Shaws Plugin Fullcalendar

I am really pleased with this product. However I am not a code expert. I am using this calendar to display bookings. However the time rows display form 12 am onwards. Realistically I only need to show the table of entries from 8am to 10.oopm. I was wondering if this could be achieved and free up some more space to make the existing rows bigger, to enhance the display of event bookings.

Many Thanks

Peter

+1  A: 

Try using the agendaDay view with this:

$('#calendar').fullCalendar({
minTime: 7,
maxTime: 21,
});

minTime: Determines the first hour/time that will be displayed, even when the scrollbars have been scrolled all the way up. http://arshaw.com/fullcalendar/docs/agenda/minTime/

maxTime: Determines the last hour/time (exclusively) that will be displayed, even when the scrollbars have been scrolled all the way down. http://arshaw.com/fullcalendar/docs/agenda/maxTime/

also maybe helpful: firstHour: Determines the first hour that will be visible in the scroll pane.

Integer, default: 6 Values must be from 0-23, where 0=midnight, 1=1am, etc.

The user will be able to scroll upwards to see events before this time. If you want to prevent users from doing this, use the minTime option instead. http://arshaw.com/fullcalendar/docs/agenda/firstHour/

orolo