Category: PNP

SPFx 1.19.0: Desmitify Error – [webpack] ‘dist’: [Object Objet]

August 26, 2024 By pH7x Systems

I was exploring SharePoint Framework 1.19.0 and noticed some controversy surrounding this error. In my understanding, it is an annoying behavior but this issue is not a bug in the chain or in the Reusable React controls for your SharePoint Framework solutions v3.19.0, nor in the Reusable property pane controls for the SharePoint Framework solutions […]

Consume Lookup Multi Select Fields SPFx with Models and Hooks

April 4, 2024 By pH7x Systems

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. […]

SPFx IPropertyPaneDropdownOption[] get Unique Options (Duplicates) Cascade

January 21, 2024 By pH7x Systems

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 […]

Working with Models in SPFx and Consume Some Field Types

April 19, 2023 By pH7x Systems

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 […]