How to only view business hours in a fullCalendar agenda view -
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
Post a Comment