Microsoft 365
-
Building a SharePoint Grid using Fluent UI and PnPjs
Building a SharePoint Grid using Fluent UI and PnPjs In this article, we will walk through how to create a grid that displays SharePoint list data using Fluent UI’s DetailsList component, while fetching the data using PnPjs. By the end,… Continue reading
-
PnPjs and Async Functions in SharePoint Framework (SPFx)
In modern web development, asynchronous operations are critical, especially when interacting with external APIs such as SharePoint REST APIs. SharePoint Framework (SPFx) and PnPjs simplify communication with SharePoint, making data fetching and list management straightforward. In this article, we’ll explain… Continue reading
-
Working with SharePoint Lists Using PnPjs
When developing applications on top of SharePoint, one of the most common tasks is interacting with lists and list items. PnPjs provides a streamlined and fluent API to perform operations such as retrieving, adding, updating, and deleting list items, making… Continue reading
-
Getting Started with PnPjs (Part2)
Getting Started with PnPjs PnPjs is a powerful library that simplifies working with the Microsoft SharePoint Framework (SPFx) and other Microsoft 365 services. It provides a fluent, easy-to-use API to interact with SharePoint and Microsoft Graph. This article will guide… Continue reading
-
Introduction to TypeScript
An Extensive Introduction to TypeScript TypeScript is a powerful, open-source programming language that has gained significant traction among developers for its ability to enhance JavaScript development. Developed and maintained by Microsoft, TypeScript builds upon JavaScript by adding static type definitions,… Continue reading
-
Guide to TypeScript Compatibility with SPFx and PnP Libraries
Comprehensive Guide to TypeScript Compatibility with SPFx and PnP Libraries This article outlines the TypeScript compatibility for specific SharePoint Framework (SPFx) and PnP libraries, along with useful installation commands and documentation resources for developers. Compatibility Overview When working with SPFx… Continue reading
-
Comprehensive Guide on Using PnPjs with SharePoint Framework (SPFx)
Comprehensive Guide on Using PnPjs with SharePoint Framework (SPFx) This article combines recent inquiries and issues related to integrating PnPjs with SPFx, specifically focusing on error handling, version checks, and installation guidelines. Understanding PnPjs in SPFx PnPjs is a collection… Continue reading
-
Troubleshooting Common Errors in PnPjs with SharePoint Framework (SPFx)
Troubleshooting Common Errors in PnPjs with SharePoint Framework (SPFx) Introduction When developing solutions with the SharePoint Framework (SPFx) and PnPjs, you may encounter several common errors related to TypeScript compatibility, module imports, and specific method usages. This article will summarize… Continue reading
-
Comprehensive Guide to Adding PnPjs to SharePoint Framework (SPFx)
Here’s a comprehensive article compiling all the information about adding PnPjs to your SharePoint Framework (SPFx) project, checking TypeScript versions, and official documentation links for further study. Comprehensive Guide to Adding PnPjs to SharePoint Framework (SPFx) Introduction The SharePoint Framework… Continue reading
-
Resolving TS2305 Error: Module ‘”@pnp/sp/presets/all”‘ Has No Exported Member ‘sp’ in SPFx Projects
This error usually occurs due to a version mismatch or incorrect import statements for the PnPjs library. As PnPjs has evolved, some APIs have changed, including how you import and initialize the library in your SPFx projects. In this article,… Continue reading
-
Getting Started with PnPjs in SharePoint Framework (SPFx)
Here’s an article based on the “Getting Started with PnPjs” guide from the PnPjs documentation: Getting Started with PnPjs in SharePoint Framework (SPFx) The PnPjs library provides a rich set of tools for developers to work with SharePoint and Microsoft… Continue reading
-
How to Use sp-pnp-js with SharePoint Framework (SPFx) Web Parts
Here’s an article based on the topic of using sp-pnp-js with SharePoint Framework (SPFx) web parts: How to Use sp-pnp-js with SharePoint Framework (SPFx) Web Parts The SharePoint Patterns and Practices (PnP) JavaScript library (sp-pnp-js) is a powerful tool that… Continue reading
-
How to Use sp-pnp-js with SharePoint Framework
Here’s a detailed article explaining how to use sp-pnp-js with SharePoint Framework (SPFx) Web Parts based on the Microsoft documentation. How to Use sp-pnp-js with SharePoint Framework (SPFx) Web Parts The SharePoint Patterns and Practices (PnP) JavaScript library, commonly referred… Continue reading
-
How to Define the TypeScript Version in SharePoint Framework (SPFx)
Here’s a detailed article that explains how to define the TypeScript version you want to use in SharePoint Framework (SPFx) How to Define the TypeScript Version in SharePoint Framework (SPFx) SharePoint Framework (SPFx) is a robust development model that leverages… Continue reading
-
Streamlining Your SharePoint Framework Web Part: Removing Unnecessary Theme References
When creating a new SharePoint Framework (SPFx) web part, you might notice that the template comes with some boilerplate code designed to support theme management. While this feature can be useful, it may not be necessary for every project. In… Continue reading
-
How to Remove Theme References from Your SPFx Web Part Code
How to Remove Theme References from Your SPFx Web Part Code In this article, we will walk through the steps to clean up your SharePoint Framework (SPFx) web part code by removing references to themes. This can be useful if… Continue reading
-
How to Remove Theme References from Your SPFx Web Part Code
In this article, we will walk through the steps to clean up your SharePoint Framework (SPFx) web part code by removing references to themes. This can be useful if you want to simplify your code or if theming is not… Continue reading
-
Cleaning Up Automatically Generated Themes in SPFx Web Parts
When you create a new SharePoint Framework (SPFx) web part using the Yeoman generator, it often includes default themes and styles that can complicate your development process. This article will guide you through the process of identifying and removing unnecessary… Continue reading
-
Cleaning Up Your SPFx Web Part
When you create a new SharePoint Framework (SPFx) web part using the Yeoman generator, it generates a template with many components, styles, and files that may not be necessary for your specific use case. This can lead to confusion and… Continue reading
-
Configuring serve.json for SharePoint Framework (SPFx) Local Workbench
As part of our SPFx development series, we’ll now dive into setting up the local environment to test web parts using the local workbench. The serve.json file plays a key role in this, allowing you to serve and test your… Continue reading
-
Saving All SharePoint Solutions in a SharePoint On-Premises Farm
In SharePoint on-premises environments, managing solutions can be cumbersome, especially when multiple solutions are deployed across the farm. The PowerShell script below allows administrators to save all solutions (.wsp files) from the farm, ensuring they have backups for each solution Continue reading
-
Automating SharePoint Solution Management with PowerShell
Automating SharePoint Solution Management with PowerShell SharePoint solutions play a crucial role in customizing and extending SharePoint sites. Whether you’re deploying web parts, features, or other customizations, PowerShell provides a powerful way to manage these solutions efficiently. In this blog… Continue reading
-
Building SharePoint SPFx Extensions: The Advanced Guide
In this eighth article of the SharePoint Framework (SPFx) development series, we will focus on SPFx Extensions. Extensions are powerful tools that allow developers to customize and extend SharePoint experiences beyond web parts. By using extensions, you can enhance modern… Continue reading
-
Security, Permissions, and Best Practices in SPFx Development
In the eighth article of our SharePoint Framework (SPFx) development series, we will explore the important topic of security, permissions, and best practices in SPFx development. Ensuring that your SPFx solutions are secure, follow the principle of least privilege, and… Continue reading
-
Using Microsoft Graph API with SharePoint SPFx: A Deep Dive (v2)
Using Microsoft Graph API with SharePoint SPFx: A Deep Dive In this seventh article of our SharePoint Framework (SPFx) series, we’ll explore how to integrate the Microsoft Graph API with SPFx solutions. The Microsoft Graph API offers a unified way… Continue reading
-
Testing, Debugging, and Deploying SharePoint Framework (SPFx) Solutions (V1)
In the seventh installment of our SPFx development series, we will focus on the critical aspects of testing, debugging, and deploying SPFx solutions. Ensuring your SharePoint Framework applications are robust, error-free, and efficiently deployed is essential for delivering high-quality solutions… Continue reading
-
Advanced PnP Provisioning Techniques for SharePoint SPFx Solutions
In this sixth article of our SPFx development series, we dive into PnP (Patterns and Practices) provisioning, a powerful framework developed by the community to automate the provisioning of SharePoint artifacts. PnP is invaluable for SharePoint developers, as it provides… Continue reading
-
Using Fluent UI to Build Responsive SPFx Web Parts
In the fifth part of our SPFx development series, we delve into Fluent UI, a robust set of UI controls developed by Microsoft, which is designed to create seamless and responsive user experiences in SharePoint and Microsoft 365 applications. Fluent… Continue reading
-
Leveraging PnP (Patterns and Practices) for Advanced SPFx Development
Leveraging PnP (Patterns and Practices) for Advanced SPFx Development In the fourth installment of our SPFx development series, we will focus on PnP (Patterns and Practices), a set of tools, guidance, and resources that greatly simplify the process of developing… Continue reading
-
Mastering Fluent UI for SharePoint Framework (SPFx) Development
Mastering Fluent UI for SharePoint Framework (SPFx) Development In this third installment of the series, we will dive into Fluent UI and its powerful controls for creating polished, responsive, and modern user interfaces within SharePoint Framework (SPFx) solutions. Fluent UI,… Continue reading
-
Mastering SharePoint Framework (SPFx) Development: Deep Dive into PnP for SharePoint
Mastering SharePoint Framework (SPFx) Development: Deep Dive into PnP for SharePoint In this second article of the series, we will explore PnP (Patterns and Practices) for SharePoint development, which is essential for building efficient, scalable, and maintainable SharePoint solutions. PnP… Continue reading
-
Mastering SharePoint Framework (SPFx) Development: Introduction to SPFx
Mastering SharePoint Framework (SPFx) Development: Introduction to SPFx In this first article of the series on SharePoint Framework (SPFx) development, we will dive deep into what SPFx is, why it’s an essential tool for modern SharePoint development, and how to… Continue reading
-
Announcing a New Series: Mastering SharePoint Framework (SPFx) Development with PnP and Fluent UI
Announcing a New Series: Mastering SharePoint Framework (SPFx) Development with PnP and Fluent UI Are you ready to elevate your SharePoint development skills to the next level? If you’re looking to build modern, responsive, and powerful SharePoint solutions, you’re in… Continue reading
-
SharePoint Fluent UI Controls: A Comprehensive Guide
Understanding SharePoint Fluent UI Controls: A Comprehensive Guide Introduction Fluent UI is a design system developed by Microsoft that provides a unified and consistent design language across various Microsoft products, including SharePoint. The Fluent UI controls offer developers and designers… Continue reading
-
Understanding SharePoint Fluent UI Controls
Understanding SharePoint Fluent UI Controls: A Comprehensive Guide Introduction Fluent UI is a design system developed by Microsoft that provides a unified and consistent design language across various Microsoft products, including SharePoint. The Fluent UI controls offer developers and designers… Continue reading
-
O Estado Atual e Futuro do SharePoint
O Estado Atual e Futuro do SharePoint Introdução O SharePoint, uma plataforma de colaboração e gerenciamento de documentos da Microsoft, continua a evoluir significativamente. Em 2024, ele se destaca não apenas por suas funcionalidades robustas, mas também por sua integração… Continue reading
-
Automação de Serviços no SharePoint Server e SQL Server com PowerShell
Automação de Serviços no SharePoint Server e SQL Server com PowerShell Gerenciar manualmente os serviços do SharePoint Server e SQL Server em um ambiente on-premises pode ser uma tarefa repetitiva e propensa a erros, especialmente em servidores que requerem controle… Continue reading
-
Capítulo 4: Inferência Estatística
Capítulo 4: Inferência Estatística 4.1. Estimação Estimadores e Intervalos de Confiança Exemplo em Python: 4.2. Testes de Hipótese Conceitos Básicos e Tipos de Testes Exemplo em Python: 4.3. Regressão e Correlação Análise de Regressão Linear Exemplo em Python: Capítulo 5:… Continue reading
-
Capítulo 6: Análise de Correlação e Regressão
Capítulo 6: Análise de Correlação e Regressão 6.1. Introdução à Análise de Correlação A análise de correlação é usada para medir a força e a direção de uma relação linear entre duas variáveis. A correlação não implica causalidade, mas pode… Continue reading
-
Capítulo 4: Inferência Estatística
Capítulo 4: Inferência Estatística 4.1. Introdução à Inferência Estatística A inferência estatística é o processo de fazer afirmações ou previsões sobre uma população com base em uma amostra de dados. Ela permite que os estatísticos tirem conclusões e façam generalizações… Continue reading













