How to only view business hours in a fullCalendar agenda view -


enter image description here

i want show business hours in daily agenda view 8:30 17:00, below:

enter image description here

are asking how hide hours outside of business hours? if so, use mintime , maxtime options:

http://fullcalendar.io/docs/agenda/mintime/

http://fullcalendar.io/docs/agenda/maxtime/

for instance, 9am - 5pm calendar:

$(document).ready(function() {      $('#calendar').fullcalendar({         ...         mintime: "09:00:00",         maxtime: "17:00:00",         ...     }); }); 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -