Fullcalendar groupId Event Object in v3 - fullcalendar

In Fullcalendar v4 there is a new groupId event object for moving multiple grouped events together. We have quite a complex customised v3 installation of Fullcalendar and Scheduler and don't want to have to upgrade just to get the groupId functionality.
Is there a way to port this functionality to v3 (eg. a section of code which can be added to fullcalendar.js)?

Related

GA Checkout Behavior - data difference between two properties

I have setup two different properties namely V1 and V2 for GA for same ecommerce website. The ecommerce is built in AngularJS 1.5.11 and it is been running different events in different properties. Over time due to data being scattered in different properties V1 and V2, we have created new property V3 to migrate all the events in 1 place. I have done all the events migration in new property V3 last month.
Over last month, I have checked the ecommerce data and compare against V2 and V3 properties for checkout behaviour and I see different data for same steps.
E.g step 1 is showing 9522 sessions for V2 and 9200 sessions for V3
enter image description here
V3 data for Checkout Behaviour
enter image description here
V2 data for Checkout Behaviour
Is there anyway I can find why there are more sessions in V2 than V3?

How to label multiple date in Full calendar

I am using Full calendar JavaScript Plugin in my PHP project. Project is a Job Schedule Application where i am assigning a job to a person for 2 days for example 1.12.2019 to 3.12.2019.
i want to show that Job in calendar labeling from 1.12.2019 to 3.12.2019 in a single color.

Query multiple Google Analytics view ids using googleAnalyticsR v4 API package

I want to use the new googleAnalyticsR package to extract Google Analytics data using the v4 API.
The documentation (http://code.markedmondson.me/googleAnalyticsR/v4.html) demonstrates the execution of a query using one ga_id, but not using multiple view ids. There is another R package called GAR which permits the execution of multiple view id in a single Google Analytics query, but the googleAnalyticsR package includes v4 API features. I attempted to query multiple view ids using ga_id <- c('viewId','viewId'), but the query returns an error. Is there a way to query multiple view ids using googleAnalyticsR v4 API?
This probably isn't supported in API directly, but given you are using R, this could be very easily achieved using FOR loops. Below is an example where I am querying multiple GA views (1 view = 1 language version of the site):
viewId <- c(6006393, 79777098, 79781440, 79981805, 75315234, 78174757, 76630182, 79447058)
ga_data_final <- data.frame()
for (i in viewId) {
ga_data_temp <-
google_analytics_4(i, #=This is a (dynamic) ViewID parameter
date_range = c("2014-01-01",
"2016-08-15"),
metrics = c("sessions"),
dimensions = c("yearMonth",
"source",
"medium"),
max = -1)
ga_data_temp$viewId <- i
ga_data_final <- rbind(ga_data_final, ga_data_temp)
}
The code above retrieves:
1 metric: number of sessions
3 dimensions: yearMonth, Source, Medium
It's using 2 dataframes - the master one is created as empty before FOR loop starts. Every FOR cycle pulls rows for 1 view (temporarily stored in ga_data_temp) and once finished, appends them to the master dataframe (ga_data_final).
Hope this helps.

Deleting intermediate record from Google Calendar recurring event

I am working with Google calendar recurring events. I created a recurring event and by using GData library, in response i get the the perimeters "COUNT", "FREQ" , "UNTIL" etc... where COUNT=5.
The problem is, when I delete an instance from this recurring event(total instance are 5 in this case), 4 instances are left in google calendar. but in response COUNT is still 5, it should be 4 now. Also in response i am not getting any details about that deleted instance.
Can any one help me in this regards.
I am very thankful in advance!!!
waiting for your reply!
This is working as intended. If the count indeed changed that would mean that the last instance should not be there anymore. While you could have deleted the second instance. In the v3 API the deletion of the second instance will be represented by an event with status=cancelled and "recurringEventId" + "originalStartTime" set to point to that specific instance.
There is a handy instances() call if you want to see all the instances of a recurring event.

getting wrong date of google calendar event

I have strange issue facing with google calendar, I am fetching google calendar event in my application using oauth, this all are work perfect but the problem is if I create the event as quick add through for today or any date like
2012-02-23 today event then at fetch time in xml as response I am getting that event as for 2 two days that is the start date and end date was 2012-02-23 and 2012-02-24
like this
<ns1:when endTime="2012-02-26" startTime="2012-02-25">
while I have create new event from create button the it will given me perfect date
this is for single event created from create new
<ns1:when endTime="2012-02-23T12:30:00.000+05:30" startTime="2012-02-23T11:30:00.000+05:30">
also in google calendar show me the single date event for quick add event what the reason for this to getting wrong end date? how the google prefer this date and maintain

Resources