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 [...]
5
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 [...]
4
Apps
Introduction Over a year ago I create a cross site collection navigation solution aka global navigation for Modern SharePoint sites using all [...]
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 [...]