
Consuming 3rd party APIs with SharePoint Framework (SPFx)
WebinarsSharePoint Framework (SPFx) is a powerful tool for extending Microsoft 365. Learn how to create real solutions with Paolo Pialorsi.
SharePoint Framework (SPFx) is a powerful tool for extending Microsoft 365. Learn how to create real solutions with Paolo Pialorsi.
Overview Paging is a nice way to get faster access to data as well as give a nice user experience to browse through huge data. While working with SharePoint lists and libraries having a huge number of items or documents paging makes the navigation through data easy. In this article, we will explore using the… READ MORE
This post is the continuation from my previous post “SharePoint Framework (SPFx) — An Overview”. In this post, I am going to focus on capabilities of SharePoint Framework. Basically, what SPFx can do for us? SPFx provide us with three types of components that we can build, Web parts, Extensions, and Library Components. Let’s explore… READ MORE
Reduce the HTTPS calls that your SPFx web part does to SharePoint and external apis HTTPS is the biggest enemy when we deal with web services in the cloud. Every HTTPS call introduces delay in your web part because of latency. To reduce the delay we could: Minimize the HTTPS calls and the data size… READ MORE
Overview Deploy Multi-Tab Microsoft Teams personal Tab Using SharePoint Framework. Creating and distributing an app built on the Microsoft Teams Platform involves deciding what to build, building your web services, creating an app package, and distributing that package to your target end users. SharePoint Framework is spreading its wings and is now ready to go… READ MORE
This article provides steps to implement the Text to speech feature in the SharePoint Framework (SPFx) web part Create a new web part project Open power shell and run following comment to create a new web part by running the Yeoman SharePoint Generator When prompted: Enter the webpart name as your solution name, and then… READ MORE
Martin Laplante, CEO, PointFire http://pointfire.com/ The schedule is out, so I thought I’d point out a few sessions that I personally find interesting, other than the keynotes of course. I’m not concerned about schedule conflicts because I can watch some of the sessions on demand. On Wednesday October 14th, I would definitely want to see… READ MORE
A SPFx table of contents for your SharePoint modern pages to direct the readers where they need to be, in addition to making your pages more reader-friendly. On your SharePoint pages, using a table of contents can be useful to direct the reader to exactly where they need to be, in addition to making your… READ MORE
In this post, I will show you how to use AngularJS in SPFx. I have divided the steps for better understanding.Here are the steps: 1. Create SPFx Project with No JavaScript Web Framework 2. Add Dev Dependencies 3. Remove some Dependencies 4. Run “npm install” 5. Modify “config.json” 6. Create folder called “app” under “/src/webparts/angularjsWebpart/”… READ MORE
In my previous posts, I have written quite a few times about SharePoint Framework service scopes (I will add links at the end of the article). In short, Service Scopes are the SPFx implementation of the Service Locator pattern i.e. a single shared “dictionary” where services (either oob SPFx or custom) are registered and can be consumed… READ MORE