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
5
votes
2 answers

Fetch Recurring events with google calendar api v3 in php

I am using google calendar api v3 to fetch calendar events. But how to fetch all the recurring events. It just return single event with some hint like: DAILY;UNTIL=20 etc. Please help me out with this...
user2291855
  • 61
  • 1
  • 3
4
votes
3 answers

Why does EWS Managed API SyncFolderItems not return recurring appointments

I'm using the managed API of EWS to synchronize a scheduling application with exchange calendars. I get all normal meetings fine, but I am not getting any repeating/recurring appointments. My code follows: itemChangeCollection =…
4
votes
1 answer

sheql expression for every Monday,Tuesday, and Friday

I just decided to represent recurring events using the notations in this link. But I could not figure out the sheql expression for every Monday,Tuesday, and Friday in a week. Can we represent it in a single expression ?
Vamshi Krishna
  • 139
  • 3
  • 7
4
votes
1 answer

Listening and Firing an Event on a Particaular Date in Laravel

I am trying to Make a Notification Script for my own use. Here is What I am trying to achieve. When user is Registering I am grabbing their email address and the notification date which is given by them and saving these in the profile table. Now on…
3
votes
7 answers

how can i automate calling a url on a password protected asp.net-mvc site

i have an asp.net-mvc site with sqlserver backend and i am using membershipprovider for login, etc. I have a few automated things that i want to run daily or weekly as i can do this today if i: Log In call URL so lets say the URL is…
leora
  • 188,729
  • 360
  • 878
  • 1,366
3
votes
1 answer

Ruby/ice_cube: Exclude whole day for hourly recurring event

Just started playing around with ice_cube I've got a weekly schedule (with a granularity of half an hour) created schedule = IceCube::Schedule.new(Time.now.change(:min => 30)) with several rules (let's say 20) such as…
polarblau
  • 17,649
  • 7
  • 63
  • 84
3
votes
4 answers

Repeating monthly and yearly events - how to ensure accuracy?

I currently allow for daily or weekly repeating events on my calendar app (using fullCalendar). My view has a checkbox that activates two dropdowns: one for the repeat interval (daily, weekly) and one for the frequency (once, twice,…
pepe
  • 9,799
  • 25
  • 110
  • 188
3
votes
0 answers

Recurring event search that supports pagination (in Elasticsearch)

I need to implement a feature where there's an event schedule page. Initially, the first 20 events are shown starting from today. When the user scrolls down to the bottom, the next 20 events are fetched. Additionally, the user can search for events…
Huy
  • 261
  • 2
  • 4
3
votes
1 answer

How to manage recurring Event for All Timezone user For Specific local Day?

I am trying to develop a scheduler- and calendar-dependent event application for iOS. which use online database (parse Database) for store Event & users Detail. Detail: One user Create Events for specific day (i.e. every Monday for 5 week from…
3
votes
2 answers

Recurring Events with Java Time (java.time or any time library)

I'm modeling recurring events in Java with a very simple recurrence pattern (every x days or weeks). Given an event object with startDateTime, endDateTime and the recurrence in days (which has the type Period from the java.time package), I wanna…
Theo
  • 3,074
  • 7
  • 39
  • 54
3
votes
1 answer

creating recurring events with ice_cube gem

I am trying to create recurring events using ice_cube and recurring_select gems. Here is my _form.html.erb code: <%= simple_form_for(@event) do |f| %>
<%= f.select_recurring :day, [IceCube::Rule.daily] %> <%=…
Paulina
  • 61
  • 4
3
votes
0 answers

Add EXDATE to calendar recurrng event

I am using the following code to update my recurring event. ContentResolver cr = context.getContentResolver(); ContentValues values = new ContentValues(); TimeZone timeZone = TimeZone.getDefault(); long…
codingForFun
  • 113
  • 1
  • 15
2
votes
1 answer

Recurring events on event_calendar

I am trying to implement recurring events for event_calendar and it is turing out to be quite challenge. It seem I have to write the recurrence for my events from scratch. I have no problem with that as long as I am not missing a better way of doing…
Yuri
  • 1,261
  • 1
  • 11
  • 23
2
votes
0 answers

How to find conflicts in FullCalendar with rrule plugin?

I am using the FullCalendar Library and I use the rrule plugin the show recurring events. I assume this question can be more generic, but these are the tools that I am using. When I add a new event, how can I find out, if this will be in conflict…
PeterPan
  • 195
  • 2
  • 16
2
votes
0 answers

Error when create event series in Salesforce with REST API

I tried to create event series in Salesforce with Rest API but got error: [{'errorCode': 'INVALID_FIELD_FOR_INSERT_UPDATE', 'fields': ['Recurrence2PatternStartDate', 'Recurrence2PatternTimeZone', 'Recurrence2PatternVersion',…
Mask
  • 21
  • 1
1
2
3
9 10