Adding Font Awesome to SPFx React project
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…
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…
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 the ability to display site alerts is one of the top 10 most requested features…
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 developing and I think it will be helpful for many people to have a quick…
I like automatic revision numbers while I’m developing. I don’t have to manually be making changes while pushing packages out and testing. While working on a team I can see that others have made changes based on the build number…
This is an exciting time! The much anticipated SharePoint Framework Preview was released yesterday. And guess what … they are essentially Add-ins Right now just the web parts piece is released and the end result is an improvement over…
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 to display the nodes. This…
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.…
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 4 asynchronous calls to SharePoint to complete successfully. In the event…
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 = new SP.ClientContext.get_current(); //Get…
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 clientContext = new SP.ClientContext.get_current(); //Get the…