eventDrop for Recurring Grouped Events FullCalendar - fullcalendar

Is there a way to get the new start event of the first and last event in a recurring grouped events?
Like if I drop any events that is in a group into a new date, it will show the start date of the first event as well as the last event since grouped events moves together.
Thank you!

Related

Get data from other events on the timeline in fullcalendar

I'm trying to do a scheduler where I can drag and drop events from a table in fullcalendar. I have some restriction, for example a type A event can't go 2 hours or less after a type B event.
So I assume that i need to get the information of the "before and after" events on the schedule point that I'm trying to drop the event, but i have no idea how to do that.
Is there a way to get a list with that data? Is there a way to get the cell where we are attepmting to drop the event?
Thank you!

Fullcalendar.js get specific day of event on event click

Is it possible to get specific day of event on event click?
Example:
I have one event that is through whole week. On eventClick() event i get object that has start date and end date. Is it possible to click on specific day of that event and get object that has date of the day i clicked on? Like if i click on event on monday i get the event object back AND date of that monday, and if i click on tuesday i get the same thing but with the date of that tuesday?
Thanks.

Create a segment using a custom event in Google Analytics

I want to create a segment of users which counts something like total [upgrade] events > 50. The upgrade event is a custom category in this case. How can I pass this event through to be used in segmentation?
I have tried using Event Category matches [upgrade], but that only counts players who have done one or more event in this category. I want to segment based on the number of times a user completes an event in this category.
Thanks for any insight you can lend. We're stumped over here!

Show only Months with Events In them?

Would there be a way to limit the next/prev buttons to only show months with events registered in them? We have courses that fill up and I don't want users to have to fast forward through blank months where there is no availability of events. I'm also including holiday events from the basic google public holidays calendar and don't want to include those events.
As long as I know, this option does not exist in FullCalendar yet.
If you are retrieving events month by month:
You can bind fullcalendar's Next and Previous events to a new function. Inside this function, get the events and if there is no events, your function must call Next or Previous again.
If you are retrieving all events at once
You can bind fullcalendar's Next and Previous events to a new function. Inside this function, get all the events and look for the first date out of the current month. Set fullcalendar's current date for that month and refresh it.

Determine which day event is on when event is selected in fullcalendar

When an event is clicked, is there any way to determine which date this event falls on? Im running into this issue when dealing with events that span multiple days, and since the event only contains a start and end date, I have not found any way to ascertain which date of the multi-day event was selected.
You can pass additional fields into your JSON object when you bind up your events.
For example, I pass in a "leave" parameter that tells me whether an event is an appointment or a part of the day off.

Resources