In this post, we will see how to add a client side web part programmatically to a page. Here in the example, I have used the javascript (from msdn) and modified to use the client side web part manifest details. ClientSideWebPart Manifest: <webParts> <webPart xmlns="http://schemas.microsoft.com/WebPart/v3"> <metaData> <type name="Microsoft.SharePoint.WebPartPages.ClientSideWebPart, Microsoft.SharePoint, Version=16.0.0.0, ...

Read More

SharePoint 2016 and Office 365 now includes the Mount files or folders api using CSOM and JSOM. The Javascript SP.MountPoint api allows us to create a shortcut url containing the link. [InternetShortcut] URL=https://***.sharepoint.com/_layouts/15/mountpoint.aspx?site=9377021dbbfe4c65bf2910274e2b5ca4&web=5f698c8ec9544498bea63d6e2dc6fb23&item=17cb837e3d204e3ebb3b650ac2922a7d The above contains the link to the _layouts/15/mountpoint.aspx which takes the following parameters, Site Id. Web Id Item Id ...

Read More