How exciting, SharePoint web parts can now talk to other parts of Office 365 rather than just SharePoint using the Microsoft Graph and third party APIs! With the release of the SharePoint Framework version 1.4.1, we now have preview support of the Microsoft Graph API. In this example, I’m going to create a SharePoint Framework … Read more
Typescript
When using the SharePoint Framework (SPFx), we can use spHttpClient to manage our REST calls. Creating new fields (columns) in lists is like using jQuery ajax methods, first we feed in the body of our call in JSON format. [code lang=”js”] const spOpts: ISPHttpClientOptions = { body: "{‘Title’: ‘Group’, ‘FieldTypeKind’:2,’Required’:false, ‘EnforceUniqueValues’: ‘false’,’StaticName’: ‘Group’}" }; [/code] … Read more
This web part replicates the classic Promoted Links Web Part but with added features such as web part properties to change the background colour, size of background image and to select which promoted link list to use. You can download it here. For more information on the full Cloud Design Box learning platform for modern … Read more
Have you heard about the virtual Collab365 Global Conference 2017 that’s streaming online November 1st – 2nd? Join me and 120 other speakers from around the world who will be bringing you the very latest content around SharePoint, Office 365, Flow, PowerApps, Azure, OneDrive for Business and of course the increasingly popular Microsoft Teams. The event is produced by … Read more
Note: this is an updated blog post to include reference material and demos from the SUGUK meeting in Leeds on 5th September 2017. I’ve been a SharePoint designer now for over 10 years. By designer, I mean changing the look and feel of SharePoint. Not just adding simple themes, but making SharePoint, “not look like … Read more
I’ve been a SharePoint designer now for over 10 years. By designer, I mean changing the look and feel of SharePoint. Not just adding simple themes, but making SharePoint, “not look like SharePoint”. It’s a common request for companies and schools to have an intranet or communication portal which reflects their brand and identity. Although … Read more