Category: SharePoint

Pexels Sora Shimazaki 5926380 0

Consume Lookup Multi Select Fields SPFx with Models and Hooks

First when you set up lookup columns in a list or library, Microsoft restricts you to 12 columns of that type in a single view. The reason behind this limitation is that lookup columns retrieve data from another list or source. If you surpass this limit and try to add a 13th column, you’ll encounter an error message. It seems that 13 isn’t a...

Pexels Andrea Piacquadio 3822850 0

SPFx IPropertyPaneDropdownOption[] get Unique Options (Duplicates) Cascade

When designing the property pane for your SharePoint client-side web parts, you may have one web part property that displays its options based on the value selected in another property. This scenario typically occurs when implementing cascading dropdown controls. I’m assuming in this Article/Fix you are getting all lists excluding the hidden ones. Let’s Start from the beginning, you have...

Pexels Andrea Piacquadio 3822850 0

PnPJs SPFx orderBy() not working?

In the PnPJs Agnostic Framework Some fields are not sortable, let’s assume this call is using a MODEL where TrainingAreaPosition is a number column without decimal places: I’m using a Custom React Hook, fix by comparing the field name, where Position is a property of the Model to Map

Photo by ThisIsEngineering 0

SPO WBBag: Company wide tips for SharePoint Online from product to service (Cloud Service SharePoint Online)

In this article I will not cover all phases and planning, but some insights from my experience. FIRST MOST IMPORTANT Companies are usually curious by nature and it is your responsibility to design processes that the client is unaware of in the context of migration and modern workplace. IN A MIGRATION CLIENTS ARE INSATISFAYED BY NATURE. You have a lot...

Pexels Andrea Piacquadio 3822850 0

Using SPFx React Controls Context in version 1.17.3

Since React 17 was introduced in version 1.16.0, the problems has began with some PnP Projects. In version 1.17.3 you will get this error when installing the PnP React Controls, so you must wait for the Repo be updated. In version 1.16.1 to use the PeoplePicker Control the workaround was give context as any in your Webpart.ts Now if you...

Pexels Christina Morillo 1181263 0

Working with Models in SPFx and Consume Some Field Types

This article will give you some insights to work with models in the SharePoint Framework SPFx and consume information from some Field Types FIELDS Why to use Models? TypeScript is a superset of JavaScript that adds optional static typing and other features to JavaScript. It provides a way to catch errors early through static type checking and can help you...

Pexels Pixabay 270348 0

Building a Timeline Component with the SPFx SharePoint Framework

Let’s get you a Timeline component you can use for several use cases, in a chronologic way to represent information or just another way you want to represent items from a SharePoint List that makes sense to you. I’m using in this sample Class Components because at the time of this post there is no native Functional Components in the...

Pexels Ola Dapo 3345882 0

Do I need SharePoint Global Admin to Promote a Sub Site to Site with the ShareGate Tool?

First of all see my ADVERTISING section relative to add’s, publicity in this Site. I use others Products or Tools also, I’ll talk about them when makes sense for an article. So, you can migrate with the ShareGate tool without SharePoint Global Admin Rights and you can still use the CMDLETs from the tool, that’s right. You can see here...

Pexels Inzmam Khan 1134204 0

SPO WBBag April 2023 The Ultimate Problem Challenge in a SharePoint Migration – Part I

The Ultimate Problem Challenge in a SharePoint Migration PART I In this SharePoint Online Brown Bag I will talk about Governance in a company point of view about the ultimate problem challenges in a Migration as a Consultant. One of the main obstacles in a migration context are the tools (3rd Parties) that are made available in SharePoint in a product...

Photo By Lukas 0

SPFx Class Components Challenge

In fact this is a topic that has been talked about often. Hooks were added to React in version 16.8. Hooks allow function components to have access to state and other React features. Because of this, class components are generally no longer needed, yes in fact, but let’s see what we have at the time of this post. So in...