Skip to main content

Posts

Showing posts from January, 2013

Power Automate: SharePoint Copy file action fails on file names with a plus (+) sign

SharePoint 2013 Minimal Master Page for lists and libraries

In order to embed a SharePoint 2013 list or document library into another web application via iframe I had to create a custom master page that is very slick, basically a new minimal master page for list and libraries. The results looks like this: The difficult part was to figure out which part (placeholders and other controls) of the original seattle.master which I used as template, I could remove or not. <%@Master language="C#"%> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Micros