SPFx Automatically Generating Revision Numbers
I like automatic revision numbers while I’m developing. I don’t have to manually be making changes while pushing packages out and [...]
I like automatic revision numbers while I’m developing. I don’t have to manually be making changes while pushing packages out and [...]
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 delete a workflow on the host web from your app web. This would be useful in the event you want your App to remove a workflow that you have deployed to the host web. NOTE: [...]
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 [...]
Back in December I posted a lengthy article on how to deploy a Composed Look for SharePoint 2013. If you haven’t read that it can be found here – http://tommdaly.wordpress.com/2012/12/19/deploying-a-custom-composed-look-in-sharepoint-2013/. [...]
Recently I was asked to make a free floating navigation element, so that when you scroll down the page it would follow. There are many adaptations of this but for standard html websites, but I was unable [...]
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 [...]