After IE 11 - Calendar is not showing Add Option or Selecting the date

Hello All SharePoint Gurus - Past weekend we had Windows update which updated IE. Now IE 11 is not letting select date or showing Add option on the calendar. Any advise? The below screen shot is from IE 10.

Regards,

Khushi

June 17th, 2015 5:05pm

Hi Khushi,

The add link is case senstive so did you try all the way, you try with different browser as well by setting the competible mode differently.

You can use css, either add it to your custom style sheet or to a CEWP on the calendar view, Edit the page and add the CEWP and add the following css

<style type="text/css">

    .ms-acal-rootdiv A[title="Add"]{ !important; }

Or

table.ms-acal-vcont tbody tr td a {!important;}

Or you can use this code

<script type='text/javascript'> 
ExecuteOrDelayUntilScriptLoaded(MyCalendarHook, 'SP.UI.ApplicationPages.Calendar.js');
function MyCalendarHook() {                     
    var calendarCreate = SP.UI.ApplicationPages.CalendarContainerFactory.create;
    SP.UI.ApplicationPages.CalendarContainerFactory.create = function (elem, cctx, viewType, date, startupData) {<o:p></o:p>
        cctx.canUserCreateItem = true;
        calendarCreate(elem, cctx, viewType, date, startupData);
    }
}
</script>

Free Windows Admin Tool Kit Click here and download it now
June 17th, 2015 5:36pm

HI Khushi,IE11 is having some compatibility issues with the share point.I would recommend to run the browser in a compatibility mode.please check the link below that explains more in details.

http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html

June 18th, 2015 2:28am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics