Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show only opening hours in fullCalendar?

Tags:

fullcalendar

I'm using jQuery fullCalendar. A client wants to see only their bussiness opening hours in the calendar. Is that possible? How?

Example: a bussiness opens from 9am to 1pm and from 3pm to 10pm

like image 615
Ivan Avatar asked Dec 04 '12 19:12

Ivan


People also ask

How to make the events not show during business hours?

To have the events not show during business hours, you could use repeating events for the segments which are in business hours, and update them in the eventRender callback if the event is dragged. OK got it @acerix thank you. Other question is that possible dynamically change "duration" or "end date" of event in "eventDragStart" callback?

What are the default business hours?

By default, Monday-Friday, 9am-5pm. If true, the default business hours will be emphasized ( view live demo ). If false (the default), there will be no emphasis. An object may be given to render business hours with fine-grain control over the days/hours. The object may have any of the following properties:

What is an object for rendering business hours?

An object may be given to render business hours with fine-grain control over the days/hours. The object may have any of the following properties: You may also break your business hour declaration into parts, in an array of objects, for additional control:

How do I use emphasize business hours?

Emphasize a view’s “business hours” (aka “working hours”). Emphasizes certain time slots on the calendar. By default, Monday-Friday, 9am-5pm. The main businessHours settings can be applied more granularly to individual resources via the businessHours property on the Resource input


1 Answers

The minTime and maxTime options will let you set the first and last hour. I don't think you can have a calendar with a break in the middel though.

Maybe you could create a recurring event called lunch and color it differently to your actual events

like image 117
tocallaghan Avatar answered Oct 27 '22 12:10

tocallaghan