Tagged Questions
0
votes
1answer
12 views
How to set RecurrenceRowset = true when creating a view programmatically
I'm trying to create 3 different calendar views which I will use as overlays to represent the same set of data but color coded differently based on the calendar view shown.
Im using the object model ...
0
votes
0answers
22 views
Change Recurring events ID
I've been reading other post about recurring events but i cannot find anything about what i need, which seems wear to me because i thought about it as something that may be common. I guess i'm doing ...
1
vote
0answers
34 views
Recurring event IDs
i have a calendar list and a task list. The calendar list has normal events and recurring events.
I sync the events in the calender list to the tasklist with a modified version of this code:
// Get ...
0
votes
0answers
81 views
Default values in a meeting workspace (Agenda/Attendees)
Does someone now, how default values can be added to a list in a meeting workspace?
For example there is a agenda with some default text in it. The user should be able to edit the agenda, withouth ...
1
vote
1answer
263 views
Recurring Events in SharePoint 2010 - Incorrect “Duration”
Background:
The company I work for has a regular SharePoint list with a custom ContentType (that does not inherit from a calendar list item) that it uses for Events. It then shows these using a ...
0
votes
1answer
76 views
Issue deleting entire series from custom Event list
I'm working with a custom Event list in our SharePoint 2010 site; the list is of calendar events, with a couple extra date/time columns and a little extra information.
I have a Web Part working that ...
0
votes
0answers
122 views
Issue with Updating an already updated recurring calendar item
I am trying to update a recurring calendar list instance, when i update the first time it all works fine but when i fetch the updated item and try to update it, than it does not get updated.Here is ...
2
votes
1answer
196 views
detach event from recurring events
When I edit a recurring event in sharepoint calendar I can decide whether I want to edit only one date or the whole series. If I edit just a single event all is fine as long as I don't edit the series ...
0
votes
1answer
228 views
Correctly remove old items in Sharepoint Calendar
I have a standard Sharepoint Calendar, which users regularly make entries to.
As the number of items constantly grows, I need to remove old events. There's no business need for events that are older ...
0
votes
1answer
161 views
prevent double calendar entry on same date and time programmatically
Can this be done programatically while saving a recurring entry?
0
votes
0answers
82 views
Is it possible to create a recurring meeting without “organizer” person
Client wants to be able to set up a recurring meeting, but they don't want that meeting to have any of the attendees pre-added. I can't find the way of preventing Sharepoint from adding the person who ...
1
vote
0answers
212 views
Check booking conflicts in sharepoint calendar programmatically to avoid overlap booking for recurring events
Is there a way to programmatically check a booking if already exist in sharepoint calendar?
I am saving recurring entries programmatically using the xml rule for recurrence as per this, for ...
1
vote
1answer
63 views
Issue with adding recurring entries programatically in Sharepoint Calendar list
I am saving recurring calendar events programatically. Here is my code.
SPSite site = new SPSite(SPContext.Current.Web.Url);
using (SPWeb web = site.OpenWeb())
{
...
1
vote
1answer
134 views
Work around for calendar LVWP recurrence?
Is there any type of work around for recurrence issue for calendars? Everything I seem to find online about the topic leads me to believe that there isn't but its worth asking the experts! :)
I am ...
2
votes
0answers
272 views
RecurrenceData Xml to Microsoft.Exchange.WebServices.Data.Recurrence converter
I want to generate EWS Microsoft.Exchange.WebServices.Data.Recurrence object based on RecurrenceData column of SharePoint List.
SharePoint stores recurring information in Xml format in ...
2
votes
1answer
2k views
CAML query recurrent events problem
Here is the code I use:
SPQuery query = new SPQuery();
query.ExpandRecurrence = true;
query.CalendarDate = new DateTime(2013, 1, 1);
query.Query = @"
<Where>
<DateRangesOverlap>
...
0
votes
2answers
435 views
Problem with Recurrence field in SharePoint calendar
I want to display the recurrence field in dataform web part. But it is getting displayed either 1 or 0.
How do I display the day names here?
1
vote
1answer
1k views
Programmatically update Recurrence parameters for calendar entry
I'm building a Sharepoint service, which allows users to book company's resources, such as conference rooms, etc. The back-end is implemented with standard Calendar list, the front-end uses JavaScript ...
0
votes
1answer
204 views
Weekly events are not displayed in the Calendar, but daily OK
I have some Javascript code, that adds events to the Calendar list using Client OM.
If a daily event is added, everything is OK.
But there're some problems with Weekly events. The event is ...
6
votes
2answers
816 views
Why are some recurring events “forgetting” their end date in the calendar list?
We are using some calendar based components both on our website and on our intranet. Both those components have the same issue.
The problem
An event is created with a recurrence over several days.
...
2
votes
1answer
954 views
How can I create a recurring event that spans multiple days in a Sharepoint 2010 calendar?
I am currently using a workaround where I create recurring events for each of the separate days in the event, but I would like to just create one recurring event that spans over 7 days. As is, the ...
2
votes
1answer
637 views
Recurrance Event Display
I am facing some problems when I create a recurrance event in the calendar. I used the calendar on "Quick Launch" and created a recurrance event for 3 days and the event name is displayed only once ...
1
vote
1answer
465 views
Set Event Recurrence ShowInNewForm programmatically
I have a custom list template based on the "Calendar" default list template with the "Recurrence" field disabled. In my case, disabled means ShowInNewForm, ShowInDisplayForm, and ShowInEditForm ...