The Easiest Way to Attach CSS or JavaScript to your Office 365 or SharePoint Site
Introduction I’m typically asked quite often on how I can attach global CSS or javascript like jQuery to my SharePoint / Office 365 site. [...]
Introduction I’m typically asked quite often on how I can attach global CSS or javascript like jQuery to my SharePoint / Office 365 site. [...]
You may or may not already know that SharePoint has the ability to do full width background images. If you’ve ever applied one of those wacky composed looks then you would see that some of them have [...]
This is an exciting time! The much anticipated SharePoint Framework Preview was released yesterday. And guess what … they are essentially Add-ins /Apps. Right now just the web parts piece is released [...]
Introduction In my last post I talked about making the SharePoint navigation render in a Bootstrap friendly way. I suggested that you could do this by changing the markup of the navigation using an ASP:Repeater [...]
Below is some sample code to provision a workflow on the host web from your app web. This sample code is in one block for demo purposes. It makes [...]
Below is some sample code of how to delete a list on the host web from the app web via SharePoint JavaScript object model function DeleteList(listName) { //Using the App Web as the client context clientContext [...]
Below is some sample code of how to provision a list from the app web via SharePoint JavaScript object model. function CreateList(title, url, templateType, hidden) { //Using the App Web as the client context [...]
The following updates have been made to this article since it’s publication: [Update 9/7/2016] – The method suggested by Håkan Nilsson only works with Publishing Enabled so that you can access [...]
Last year I posted a blog article which described the issue with SharePoint 2010 and having a footer. Well similarly SharePoint 2013 has some of the same obstacles when adding a footer. If you are interested [...]
This article is based off Thomas Sondergaard’s post located here: http://sharepointsharpener.wordpress.com/2011/09/27/quick-fix-remove-libraries-lists-from-toc/ This version is slightly different, I [...]
What is cache busting? Cache busting is way to ensure that the browser will download a new version of your file. This is easily accomplished using a simple technique of appending a ? with some unique characters [...]