How to display all day events in Timeline view? - fullcalendar

Is there a way to make the all-day area appear in Timeline view?
I guess I could assign all resourceId's to all day events, but that seams a little bit of an overkill....

Related

Half-width events in Month view?

I have a fullcalendar month view, and am adding all-day events to it. Is it possible to get those events to display as half of the width of the day so that I can have 2 columns of all-day events each day?
My goal is to limit the height of each day as more events are added. Currently, when I get around 7 events, and each day can get quite tall.
I hope to save that vertical space by listing the events each day in two columns. Is it possible?

How to Show events that span multiple days as individual events on each day that it spans?

I am using a fullcalendar.js Version 2.4.0 and fullcalendar spans long events I.e Events which are From 3rd May to 5th May are show as a long Event Streched all over, but what I need to show is to span multi - day Events as Seperate Event on Each day
For Example in Image attached Below A Event Children's Petting zoo is a 3 day Event, so it is shown 3 times seprately on these days which is giving it a clean look. I want to show in the same way.
How can Acheive this as given in Screenshort with Fullcalendar in All the Views.
See Screenshort of my calendar and point 2 which I want to do.

FullCalendar Not Displaying TIMES

I have rendered full calendar with agendaWeek and agendaDay options on a web page. The agenda views do not display time increments on the Y-axis (left pane of the fullcalendar view).
Why would this be?
I have not included any events on the calendar yet. I just wanted to have a blank calendar to start with, but the agenda views have empty slots for each time increment like "10pm, 11pm, 12pm etc" but the time slots are empty white space.
The top left corner of the agenda view does have the label "all day" for all day events.
All day default was set to false when rendering the calendar.

Toggle days on and off in a calendar view?

I need to store the 'on' days (in this case, the 'available' days) in the database and show the 'available' days on a monthly or weekly view.
I need to allow a user to toggle days on a the calendar on and off. I've been looking a fullcalendar and some bootstrap options such as http://bootstrap-calendar.azurewebsites.net/.
With Fullcalendar, is there a way to toggle a day on and off in a weekly or monthly view? and generate the corresponding AJAX call?
Sure, you can use background events to show that a day is available or not available. And dayClick to toggle it back and forth. Since background events are events, they should store and fetch from the DB.
Keep in mind, that all this needs to be coded though. It doesn't automatically code a day toggle. But these things aren't too difficult or long to code and FC is built to facilitate this kind of thing.

Drupal Calendar views display

I am working on a project which has events calendar. I am using date and calendar module for that.
On calendar month page, we can display titles of events on that day. That is simple. But suppose there are 10 events on one day, then that day column becomes too long. So, instead of displaying titles, I want to display no. of events on that day and place a link on it which will go to the day view.
Using custom php code module for views, i created one field where I am entering this code
<?php
$view = views_get_current_view();
$view->set_display(day_view);
print count($view->result).' events';
?>
"day_view" is the id of the view which display events on that particular day.
If I am not using $view->set_display(day_view); it willk display no. of events for that month. But I want to disply no. of events for that day only.
My logic is since day view displays events from that day only, it will return correct number, if I call its display for month view. But it's not doing so.
Also how to generate link for day view?
Please help!

Resources