Category: SharePoint Framework
-
MGT Login control in SPFx

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…
-
Connect SharePoint Framework web parts using dynamic data

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…
-
How to use PnP PeoplePicker

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…
-
DynamicForm to quickly create a custom form

Have you ever needed to create a custom form based on a SharePoint list? This article is for you! With the @pnp/spfx-controls-react NPM package you can quickly create a form based on the fields of a SharePoint list. To use the DynamicForm control you have to create an SPFx solution,…
-
ACE with multiple quick views

Today I want to show a simple thing about ACEs and that is: how to register multiple quick views. In this sample I’ll be using two buttons in the card view to open differents quick views. Just a reminder before diving into the code: an ACE can be displayed in…