SOLVED

Group calendar on modern pages (communication site)

Brass Contributor

Hello experts!

 

Does any one of you have a solution for displaying a calendar in month format on a moderna sharepoint page? The new group calendar webpart is good but not suitable in this case. I need to show the calendar in a format similiar to the below screenshot.

 

Skärmklipp7.JPG

The source can be a group calendar or a sharepoint list or basically whatever.

/Magnus

5 Replies
I haven't figured out a way just yet, hasn't been high priority but obvious can create a webpart with calendar in spfx, but nothing I'm aware of out of the box yet. I still just link to old SharePoint calendar view for this need.

Ok, thanks for your reply!

 

Is it possible, in some way, to present the old SharePoint calendar on a modern page? In an iframe maybe?

best response confirmed by YuliyaHarada (Microsoft)
Solution

We did it with iFrame:

 

<iframe src="https://xxx.sharepoint.com/sites/xxx/Lists/Calendar/calendar.aspx" width="100%" height="1000px" scrolling="no" style="margin-left: -230px; margin-top: -207px;">

</iframe>

 

Thank you that works for me. Is there a way to get rid of the big white area below the Iframe?

@Chrissy Ginther  Does this assume that you're using a list to power the calendar view?

1 best response

Accepted Solutions
best response confirmed by YuliyaHarada (Microsoft)
Solution

We did it with iFrame:

 

<iframe src="https://xxx.sharepoint.com/sites/xxx/Lists/Calendar/calendar.aspx" width="100%" height="1000px" scrolling="no" style="margin-left: -230px; margin-top: -207px;">

</iframe>

 

View solution in original post