Some time ago I updated my SPFx sppkg file and as usual deployed it in my SharePoint app catalog, replaced the old version and when I hit the “Sync to Teams” button this showed up: Panic! Did I change something the wrong way? What did I do wrong? Why was the sync working before and…
Using the Microsoft SharePoint Yeoman generator (for a quick review of the tool you can check this blog post) you can create your first ACE project. To create your first ACE with Yeoman you have to execute the command: and provide various values to it: What is your solution name? Your-Custom-Solution-Name Which type of client-side…
The new SharePoint framework preview release is out! Please remember that, at the time of writing, this is currently a public beta. This is a minor release so it doesn’t contains a lot of changes, this version is focused on a better mobile experience when using the Adaptive Card Extensions. In detail there is now…
The Adaptive Card Extension (aka ACE) is a custom component that enable the user to extend the Viva Connections’ dashboard using SPFx. When you create a Generic Card using the Microsoft SharePoint Yeoman generator you will have a solution like the following: In detail the src folder structure will be like the following picture: The…
I bet that on your way developing components for SPFx you already know what console.log is and how to use it…but you know that there are also other useful methods? Following the documentation here you can find all the supported methods, some of which are: I think that some of the methods are pretty useful…
PnP stands for Pattern & Practices, this is an initiative which include samples, guidance and tools regarding SharePoint Framework, Office 365 APIs, Office Add-ins, and Microsoft Graph. PnP is community driven open source project where Microsoft and external community members are sharing their knowledge and best practices for Office 365, SharePoint & Office. There are many…
Some time ago me and a collegue were debugging a problem with a Teams personal app, we got the following response in Teams: Which was not so helpful isn’t it? Also the browser console was of no help. It seemed like a problem loading the app, so we took a look at the manifest.json file…
Finally it’s here: SPFx version 1.18 is available! As I mentioned in my previous article SPFx 1.18 brings some changes and new features to improve and enhance the life of us developers. To upgrade existing references you have to uninstall all the packages that references the old version, you can do it executing: To install…
First things first: what is Yeoman? Yeoman is a CLI tool that helps you create new projects. To do so Yeoman uses various Generators, depending on the type of project you’re creating there are multiple generators available. If you want to know more and discover all the available generators you can check the official site,…