• Proceeding with the appointments with the MGT (Microsoft Graph Toolkit) controls today I want to talk about the File List control. I will not cover in detail the implementation, it’s not the scope of this post, if you’re wondering how to achieve all the steps to enable you to use MGT inside SPFx you can…

    Read more

  • You probably already know what are SharePoint Framework (SPFx) web parts but do you know that you can connect two web parts dynamically? In a nutshell the provider web part needs to implement the interface IDynamicDataCallables to define which are the dynamic properties to expose, the consumer web part will define the receiver properties in…

    Read more

  • Proceeding with the appointments with the MGT (Microsoft Graph Toolkit) controls today I want to talk about the File control. I will not cover in detail the implementation, it’s not the scope of this post, if you’re wondering how to achieve all the steps to enable you to use MGT inside SPFx you can have…

    Read more

  • Have you ever needed to test an Azure Function locally but using HTTPS instead of the default HTTP? This post is for you! 🥳 To achieve this you will need two things: Getting the certificate Starting with the certificate, in case you don’t have one, you can create a self signed certificate using PowerShell with…

    Read more

  • Proceeding with the appointments with the MGT (Microsoft Graph Toolkit) controls today I want to talk about the Agenda control. I will not cover in detail the implementation, it’s not the scope of this post, if you’re wondering how to achieve all the steps to enable you to use MGT inside SPFx you can have…

    Read more

  • While developing an SPFx solution and you want to use an API, such as the Microsoft’s one like Graph API or SharePoint or other custom APIs, you have to register the permission needed in Microsoft Entra ID. First of all you need to know which permissions you need, for example if you want to use…

    Read more

  • When developing an SPFx web part solution and have multiple configurations to make available in the property pane you can split those in multiple pages because luckily there is a built-in navigation handling in the property pane! When developing a web part and using the method getPropertyPaneConfiguration you can see that the returned object contains…

    Read more

  • A while ago I’ve been asked to change the name of an SPFx Teams personal app and to localize it, I’ve never done something like that so I did my searches and luckily it came out that it’s a pretty easy thing to do! To support localization in the manifest.json, like in my case to…

    Read more

  • Sometimes I need to have multiple Node.js version installed on my machine, maybe it’s only me but if you have my same problem the solution exists and it’s name is NVM. I usually develop on Windows so I installed NVM for Windows from here, but if you’re on other OS I’m sure you can find…

    Read more

  • Today I want to cover the use of the PeoplePicker of the @pnp/spfx-controls-react package. The control let’s you select users and groups filtering them by the name, also you can specify if a single or a multiple selection is enabled. In this sample there are a PeoplePicker to select a user and another to select…

    Read more