Questions tagged [recurring-events]

code that is executed in consecutive cycles such as every frame of a graphics engine, or each clock cycle of a circuit, or simply code that is executed whenever an often event is triggered

139 questions
0
votes
2 answers

Expected payments by day given start and end date

I'm trying to create a SQL view that gives me the expected amount to be received by calendar day for recurring transactions. I have a table containing recurring commitments data, with the following columns: id, start_date, end_date (null if still…
BMene
  • 29
  • 1
  • 9
0
votes
2 answers

Is there a way to create a rrule for recurrent events that only fall into weekdays?

I am trying to user google calendar api to schedule events, they have different recurrency types type1: weekly type2: every 14 days type3: every 28 days type4: every 42 days type5: every 56 days The problem is: if the 56th day falls on the…
fweffort
  • 75
  • 9
0
votes
1 answer

Google calendar How to edit recurring event through php api?

How to update instance of recurring event using php api and perform following. 1.This only 2.This and following 3.All Events For Weekly recurring events. Also Can u help for how to make , DOES NOT REPEAT for above options..
0
votes
0 answers

How can I check if there are conflicts for recurring events using Apps Script?

I would like to write a Google Apps Script that will check if there are any conflicts for a recurring events before I send it to Google Calendar from a Google Sheet. I am able to check on the first date using: var ConTimes =…
0
votes
1 answer

Generating rrules based on certain timezones

Let's say I have a user of my application set a recurring event. His timezone is America/Denver, so I store that along with an rrule that determines when the recurrences happen. This works assuming that both my server and all of my users are in the…
Turner Houghton
  • 496
  • 6
  • 16
0
votes
2 answers

Rails 5.1, recurring events that user can create

I'm looking for a solution so my users would be able to create recurring events. For example lets say that a user wants to add a post every month on a specific date. Every month on that date a new post would be automatically created with some…
Asso
  • 53
  • 1
  • 7
0
votes
1 answer

dhtmlx scheduler for recurring events

I am trying to add recurring events in calendar using dhtmlx scheduler. var data = { start_date: "2017-12-03 10:00:00", end_date: "2019-12-22 10:00:00", text: "test", rec_type:…
0
votes
0 answers

Javascript date math, weekly recurring events

I'm just wondering if anyone can point me in the right direction. I have an array of events var event = [ 'Event1', 'Event2', 'Event3' ] As well as a start_date start_date = '11/10/17' My goal is to take the current date and find the…
SquidZ00
  • 1
  • 1
0
votes
1 answer

Handling recurring tasks in Rails

I've been trying to build a customised to-do app with a possibility to add recurring tasks. My first approach was to use recurring_select on the front and ice_cube logic in the back. I managed to generate a schedule with all desired occurrences but…
Joanna Gaudyn
  • 597
  • 3
  • 21
0
votes
0 answers

Wrong date of recurring events are added in google calendar

When I add an recurring event from one timezone, the UNTIL date shows correctly but the events shown are wrong For example, { "end": { "dateTime": "2017-09-26T22:10:00", "timeZone": "America/New_York" }, "start": { "dateTime":…
Varshini
  • 187
  • 1
  • 6
  • 20
0
votes
1 answer

Android Calendar: Recurring event is continuing for all the month but I need to repeat it on certain dates in every month

I'm loading both recurring event and one-time events to the calendar. One-time event is working fine but in recurring event the events are continuing to the next days, I had given recurrence rule…
0
votes
1 answer

Recurring event in FullCalendar

So I have spent the past 2 weeks trying to figure this out and tried all other previously proposed answers. I'm still not able to get it right. I'm trying to setup a calendar where the recurring events are filtered within the specified date…
0
votes
1 answer

can I search for events based on time in neo4j?

I am using the neography gem hosted by GrapheneDB. I need to send out recurring events. What I did with my previous DB is check if object[:next_occurrence] is < TimeDate.now I don't see how I can do this type of search in neo4j nor in the…
Satchel
  • 16,414
  • 23
  • 106
  • 192
0
votes
1 answer

Generate multiple rows of data based on 1 row input - Google Sheets

I'm trying to create an automation in my backend in Google sheets dashboard to make it easy for me to scale a certain report that I'm creating. Basically, I want to Generate multiple rows of data based on 1-row input done in a certain place. This is…
Pravin
  • 461
  • 5
  • 26
0
votes
3 answers

Create a recurring event that repeats Monthly on the third Tuesday

Using Google Apps Script Calendar Service (not the Calendar API Advanced Service) is it possible to create a recurring event that repeats monthly by the day of week? For example, the first event in the series is Tuesday, March 21st. I want this…