Category: SharePoint Framework

HOT SEAT with Vesa Juvonen - SharePoint Framework (SPFx)
HOT SEAT with Vesa Juvonen – SharePoint Framework (SPFx)
Webinars

HOT SEAT with Vesa Juvonen – SharePoint Framework (SPFx) In this rapid fire Q&A Hot Seat, Vesa Juvonen, Principal Product Manager, Microsoft, answers questions on SPFx pre-install, dependencies, and the technical stack. The discussion covers the advantages and disadvantages of tightly coupling SPFX with SharePoint online. Vesa is a principal product manager at Microsoft, located… READ MORE

Using Open AI API in SharePoint Framework Projects
Using Open AI API in SharePoint Framework Projects
Webinars

Using Open AI API in SharePoint Framework Projects Join Anoop Tatti, MVP, and watch this webinar recording to learn all about Using Open AI API in SharePoint Framework Projects! Webinar Description – ‘Using Open AI API in SharePoint Framework Projects’ Do you want to translate your SharePoint content quickly and accurately, without sacrificing nuance? If… READ MORE

Transforming SharePoint Forms with SPFx: How to Start
Transforming SharePoint Forms with SPFx: How to Start
Webinars

Transforming SharePoint Forms with SPFx: How to Start Join David Ramalho, MVP, and watch this webinar recording to learn all about how to start transforming SharePoint forms with SPFx! Webinar Description – ‘Transforming SharePoint Forms with SPFx: How to Start’ SharePoint is a powerful collaboration platform used by organisations of all sizes to manage content,… READ MORE

Be Careful Revoking SharePoint SPFx Service Principal Grants
Be Careful Revoking SharePoint SPFx Service Principal Grants
Blog Posts

When building SPFx webparts which connect to the Graph API, or other 3rd party API’s, you have to grant the appropriate permissions to the ServicePrincipal used by SPFx, which is called “SharePoint Online Client Extensibility Web Application Principal” – see Request permissions to an Azure AD application. There are a few ways you can do this; Declarative permissions request by… READ MORE

SharePoint Framework (SPFx) - Understand the Solution Structure
SharePoint Framework (SPFx) – Understand the Solution Structure
Blog Posts

Overview SharePoint Framework (SPFx) client side web parts are lightweight in nature. They can be developed using open source tools such as Node.JS, NPM, Yeoman generators and can be opened in code editors of our choice (Visual Studio Code, Atom, Webstorm). Node Package Manager (NPM) helps to install modules and its dependencies. Yeoman generator carries… READ MORE

Nicole Enders interviews Vesa Juvonen
Nicole Enders interviews Vesa Juvonen
Blog Posts

Community Reporter Nicole Enders interviews Vesa Juvonen, Senior Program Manager, OneDrive – SharePoint Engineering. Video Transcript Nicole: Okay welcome to the ESPC 2019 we are sitting here at the community reporter booth I have Vesa here as my interviewee. Vesa: Thank You for having me. Nicole: You’re a principle program manager at Microsoft so for… READ MORE

Add Google Charts into SharePoint Framework Web Part
Add Google Charts into SharePoint Framework Web Part
Blog Posts

This post is based on the question in sp-dev-docs repo. The question is how can we render a Google Charts in SPFx web part. Actually, it’s pretty easy thing to do. As a starting point I’ll be using the code provided in the question I mentioned above: <script type=”text/javascript” src=”https://www.gstatic.com/charts/loader.js”></script> <script type=”text/javascript”> google.charts.load(“current”, {packages:[“corechart”]}); google.charts.setOnLoadCallback(drawChart); function drawChart()… READ MORE