Forum Discussion
SharePoint Modern (task/project) Timeline
- Aug 06, 2018
Until Microsoft releases a modern UI for Tasks Lists and accordingly to some Project Online features, the only way to go is create a custom SPFx WebPart (or just check if someone has already created that WebPart)
Thanks, couldn't found a spfx webpart on GitHub :-) Once I have a first version of the webpart done, I'll check to make it open source.
Cheers
Bernd
Hey,
I used the embedding code that I used to embed a team calendar into my modern web page for my task web part and it worked! So now I actually see the timeline on top of the task list on my modern page! Pretty cool. Here is the info I used:
In Modern View on a SharePoint site you can no longer simply insert a site calendar onto the site; it is Group calendars you can easily add. If you need to add a site calendar to a site without creating a Group:
Adding an embed webpart to your modern page with this iframe code:
<iframe width="100%" height="1000px" src="https://xxx.sharepoint.com/sites/xxx/Lists/Calendar/calendar.aspx" scrolling="no" style="margin-left: -200px; margin-top: -190px;">
</iframe>
From <https://techcommunity.microsoft.com/t5/SharePoint/calendar-web-part-on-modern-pages/td-p/161291>
This will put the calendar into a section on the new modern page. Because the name of the calendar does not appear, you can add a TEXT web part on top of the calendar to call out the calendar name.