CSS
There are a number of already built in helper (or utility) classes in Office 365 and SharePoint 2013. These classes can be very useful when you are building new components. You can skip writing CSS for [...]
Branding
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 [...]
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
I was just thinking about this issue one day and realized that I could just override the default image but if the user decides that they wanted to change it later via site settings they could. Why do I [...]
Customizations
Introduction This all started as a request from a client to hide only certain users from the people search. I’ve decided on this route because the management interface already exists to update user [...]
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 [...]
Branding
Introduction I recently came across an interesting blog – http://www.n8d.at/blog/office-365-icon-font-documentation/ which mentions O365 icons. This was back in February so when I attempted to locate [...]
Branding
My new favorite thing is creating all my style sheets with SASS. SASS makes writing my style sheets faster, easier, cleaner, and more reusable. Don’t ask me why I chose SASS, but I liked it just a little [...]
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 [...]