I’m, Microsoft MVP, in Office Development, with more than 30 years of experience in the area of Information Systems. My Specialties: IT Development; ECM; SharePoint Solutions Architect; SharePoint Framework (SPFX), Client Side Development. Active contributor of SharePoint Developer Community (SharePoint PnP), with many contributions. Please see all contributions in PnP | Microsoft 365
SPFx Extension I recently published in the PnP community a new Application Extension that allows the user to select a list or library and receive a real-time notification with the information that has changed. This article explains the motivation and my experience in implementing this application. Motivation Not having to be concerned about when information that is relevant to me changes was the main motivation for creating this extension, don’t matter where… Ler Mais
To obtain information about the user and the respective photo, we have to make two requests, one to obtain user information and the other to obtain a photo. If your application obtains information from just one user, this may not be a problem, but if you need to obtain a list of users, there will be a performance degradation, since for each user we have to make two requests. For example to… Ler Mais
Add Azure AD Attributes to Profile Card On the profile card in Microsoft 365, you can find information about users that is stored and maintained by your organization, for example Job title or Office location. Microsoft Graph has new API’s that allows us to add Azure AD Attributes to the profile card, they use the profileCardProperty resource to show additional properties for an organization, by: Making additional attributes visible Adding custom attributes Additional properties will display in the Contact section of… Ler Mais
The MSGraph Invitation Manager Quick overview of Invitation Resource Type, for full information and details please go to Microsoft Graph API Reference. The resource type has the following definition: Methods Method Return Type Description Create invitation invitation Write properties and relationships of invitation object. Properties Property Type Description invitedUserDisplayName String The display name of the user being invited. invitedUserEmailAddress String The email address of the user being invited. Required. invitedUserMessageInfo invitedUserMessageInfo Additional… Ler Mais
Sometimes we need to include some assets with our SPFx Application (web part or application customizer), like images, JSON files, or another stuff. By default this assets aren’t recognised by SPFx in build chain process. For example we have some images that are in a folder that I called “assets” and I want that will be deployed with my SPFx Application because we use them in our SPFx application. To include this… Ler Mais
Introduction In the communication site we can create a Full width Column that allows us to add a web part that will have full On the communication website, we can create a full width column that allows us to add a web part that will be full width. Once created, we will see a list of Web Parts that can be added to the section, not all Web Parts can be added… Ler Mais
Microsoft Graph Open Extension allows to add untyped custom data to resources, like User and Messages, and there single API endpoint that gives you the possibility to extend Microsoft Graph with your own application data. You can add custom properties to Microsoft Graph resources without requiring an external data store. Here a list of resources that are supported Resource Version Administrative unit Preview only Calendar event GA Group calendar event GA Group conversation… Ler Mais
By default a list don’t have the tile view available like the document library has, but we can use List View Formating JSON to create Tiles and then the option will appear and we can switch from List to Tiles View. Define Tiles View as Default View Sometime we need to define the Tiles View as a default view on a list and here the steps to do it: Create a New… Ler Mais
Introduction Office UI Fabric is a responsive, mobile-first, front-end framework for developers, designed to make it simple to quickly create web experiences. With Office UI Fabric we can apply simple CSS styles to make web applications look and feel like the rest of Office 365 Applications. To Styling an Office UI Fabric component we can use the follow approaches: Styles defined in SCSS file and applied with ClassName prop Styles applied… Ler Mais
Summary The Web Part Tree Organization Chart, shows the Organization Chart of the Company or the team, the webpart reads information from current user to build the Organization Chart. We can configure in the webpart properties if it show all Organization Chart or the only user team, (same manager and peers). Code is here, soon I will create a PR to sp-dev-fx-webparts. Sharing is Caring…