Apps
Introduction I love the FontAwesome library and use it on many projects. I was a huge fan of FontAwesome 4.0 and had a little struggle moving over to using 5.0 + 6.0 in my projects. I was use to the old [...]
2
Apps
Introduction This new project is a nice little feature that you can easily add to your SharePoint site to enable site messages or alerts. Having [...]
5
Branding
This post will demonstrate another SharePoint UI hack that is typically seen on many modern sites today. B
0
Development
I’m posting this quick tip on how to create a site collection based app catalog with PowerShell. I used this over and over when I’m [...]
0
SPFx
I like automatic revision numbers while I’m developing. I don’t have to manually be making changes while pushing packages out and [...]
Development
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 [...]
Branding
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 [...]
Apps
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: [...]
8
Apps
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 [...]
Apps
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 [...]
Apps
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 [...]