Showing posts with label calendar. Show all posts
Showing posts with label calendar. Show all posts

Saturday, January 23, 2021

23 Jan

How to remove hyperlink from SharePoint calendar web part event?

 ExecuteOrDelayUntilScriptLoaded(removeCalendarLinks, "sp.ui.applicationpages.calendar.js");// call the below function or append to onsuccess handlerfunction removeCalendarLinks() { $(document).ready(function() {    $('div.ms-acal-mdiv a').each(function() {        $(this).attr('onclick',...

Tuesday, March 29, 2016

29 Mar

How to open a calendar item in a modal dialog?

In this below script, open a calendar item in a modal dialog function openDialog(pageUrl) {   var options = {       title : "calender",       width : 500,       height : 400,       url : pageUrl   };   SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.showModalDialog',...