0
votes
1answer
29 views

Syncing Exchange calendar with SharePoint calendar

I have a meeting calendar in Exchange which some users use in their Outlook. I want to sync this calendar in Sharepoint (which again can be used by multiple users) so that any change made in ...
0
votes
1answer
20 views

Custom Application or Web Parts? No idea how to do either

In my team, I've been tasked into automating some of the things we do. I have been playing around with Sharepoint (I don't have full overall Sharepoint-admin privileges though, although I do own the ...
0
votes
1answer
129 views

How to display only future events in Content Query Web Part?

I have content query web part for displaying the future events. But the web part is displaying the past events as well. For example, I had two events in March and 3 in April. It shows all five event. ...
0
votes
0answers
32 views

Creating Sub Calendars that Feed a subset of Events to Master Calendar

I need to create a site where designated users can create events for their own respective calendars, which then get approved by a supervisor, and afterwards can be optionally pushed up to a master ...
0
votes
0answers
28 views

How to add standard Calender, Task List and Newsfeed app to custom web template

I have added a custom web template in VS 2012 for SharePoint 2013 project. Now I want to add standard Calender, Task List and Newsfeed app to custom web template. How I add these from VS 2012?
1
vote
0answers
69 views

Change month in SharePoint MonthlyCalendarView control

How to change month in SharePoint MonthlyCalendarView Control? It seems, there is no way to change month in calendar or change view of calendar.
2
votes
1answer
83 views

Sharepoint Calendar Issue

When i am adding event in share point 2010 calendar programmatically, I need to refresh 2 time calendar. After that event is added to calendar.. Plz help me. Its urgent.. code: SPList calendarList ...
2
votes
0answers
67 views

Is there any way to have a reoccurring appointment with a duration that lasts a week? (On Call Calendar)

I have been trying to migrate from our team shared calendar in Exchange and move over to SharePoint 2010 for our permanent Team Calendar. However, we have an On Call event that re-occurs and has a ...
0
votes
1answer
162 views

prevent double calendar entry on same date and time programmatically

Can this be done programatically while saving a recurring entry?
1
vote
0answers
213 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
65 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()) { ...
0
votes
0answers
83 views

SharePoint calendar display BCS data

I'm trying to aggregate multiple datasources and display the data in a single SharePoint Calendar. The datasources are all fed from BCS, coming from a variety of systems. I have the BCS models / ...
1
vote
1answer
106 views

Change Sharepoint Default Calendar to a shared Outlook Calendar

Is it possible to point the calendar built into sharepoint to a shared outlook calendar? I know I could just export the outlook calendar and then import it into the sharepoint calendar, but the client ...
0
votes
0answers
113 views

Calendar issue: OOTB Calendar disabled in Sharepoint 2010

For a SharePoint 2010 site, I need to show the default calendar on a page. So, I added the calendar as a webpart in the page. This is a publishing page with a custom master page. The problem is that ...
0
votes
0answers
1k views

How to customize the Calendar View in SharePoint 2010?

I have the following requirement for the OOTB Calendar Month view (in the default Calendar web part) : Combine the Saturday and Sunday into a single column and show all events for both days in that ...
0
votes
2answers
1k views

Change the default Start and End Time for new Events

We are using a SharePoint team calendar for vacation form approvals. The default values for new events Start Time and End Time defaults to the next full hour, example 5:00 PM to 6:00 PM, when entering ...
1
vote
2answers
993 views

SPCalendarView control, same events are displayed each month in a VisualWebPart UserControl.ascx.cs file

I am creating a custom SharePoint Calendar to pull from multiple SharePoint Calendar Lists. In the markup I have the following: <SharePoint:SPCalendarView ID="EventsCalendar2" width="100%" ...