In the not-so-distant past, we used to be able to retrieve SharePoint Page content Columns (inside Sections) and could count on them being in order. This appears to no longer be the case, necessitating a rework of understood functionality and some reflection (pun intended).
[Read More]
SPO fresh Communication Site missing Site Assets Library when provisioned, a work-around
I’ve observed today that SharePoint Communication Sites are no longer being provisioned with the default Site Assets Library.
[Read More]
Automatic TypeScript update breaks dataVersion getter in SPFx 1.11
I noticed today that all of our SPFx solutions were throwing a compiler error within Visual Studio Code. Apparently the dataVersion getter included in the boilerplate of Yeoman scaffolded projects is suddenly incompatible.
[Read More]
Primer - Manipulate SharePoint Site Collections part deux, C# and CSOM
My previous post detailed how to use PowerShell to connect to your SharePoint tenant using SPO and PnP PowerShell and manipulate it with CSOM. In this post we will do something very similar using C# and CSOM from within a Console App using the .NET Framework.
[Read More]
Primer - Manipulate SharePoint Site Collections part 1, PowerShell and CSOM
There are a multitude of ways to manipulate SharePoint, I will take the opportunity to give you a primer in connecting to your tenant using SPO and PnP PowerShell, and extending the default functionality with CSOM.
[Read More]
Modernising a legacy application using ASP.NET 4.8, JWT, SQL Server, Entity Framework Data First and a React front-end - part 1
I intend for this tutorial series to highlight what I believe to be some very important aspects of dealing with legacy ASP.NET Web Applications, how to modernise them with a wrapper of sorts that can handle things like JWT session/passport Authorisation, securely exposing the existing database as a data layer...
[Read More]
SPFx React - improving console logging - revisited
In my previous post we discussed how we could go about styling browser dev tool console logging to assist with the initial triage of issues within our SPFx Extensions.
[Read More]
SPFx React - improving console logging
SharePoint console logging can be a nightmare to trawl through with the amount of information and error logging Microsoft leaves in their production code. Locally serving SPFx Extensions for testing on live sites only compounds this. I’ve come across some simple functionality that I had no idea existed whereby you...
[Read More]
SharePoint Forms Managed Metadata Fields Resetting when Manipulated
It started two weeks ago. We were about to deploy a significant framework piece to a client environment that included, among many other components, an out of the box SharePoint List with custom Content Type. The Content Type includes multiple Managed Metadata Fields, all of which have default values selected...
[Read More]
Scaffolding an ASP.NET Core MVC Web App with Identity
I came across a cross-post on Reddit today where the OP reposted a very outdated tutorial to create an ASP.NET login page revolving around old versions of ASP.NET (think .aspx pages, yuck!). I thought it would be a good opportunity to write a blog post highlighting a modern approach by...
[Read More]