Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
12 views

We have developed a SharePoint Framework (SPFx) application for customizations and are using @pnp/sp to perform GET/POST operations on SharePoint lists. Our system sends email notifications through ...
0 votes
0 answers
53 views

We have created SPFx with React project. We have used SPFx version 1.21.1 We have created one component to that project. Below is the code for the same, import * as React from 'react' const ...
2 votes
0 answers
286 views

I have built an accordion spfx webpart for our Modern Sharepoint site where I am consuming CKeditor version 4.13.0 (Full) CDN version to add Rich text for each accordion tab when the page is in edit ...
1 vote
0 answers
73 views

I'm very new to React and SPFx. I was trying to use the Monaco Editor component from @pnp/spfx-controls-react in a SPFx Web Part. I have the editor, in which the user can write custom css. I also have ...
0 votes
0 answers
344 views

I have created an SPFx React solution for custom development in SharePoint Online. I have taken reference from the Create a Single Page App in SPFx using React Router Dom link. Now, I need to add the ...
0 votes
0 answers
154 views

I am new to typescript and I am trying to build a CRUD app that builds out a table with buttons that allow a user to click on the button to populate the form for updating of that item. Right now it ...
0 votes
0 answers
462 views

I am using SharePoint Online. I have created a SharePoint Framework web part and added it to the page. I need to integrate the embedded code of the Slack channel into the iframe under the SPFx web ...
0 votes
0 answers
1k views

I have the following error when I try to access my webpart that I have created: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'getById'). The code is the following one: ...
1 vote
0 answers
116 views

I have created a demo with reference to the below link, https://gonadn.medium.com/spfx-with-angular-element-crud-operations-using-pnpjs-5a8a18ed6e43 It is working correctly in the workbench. Kindly ...
0 votes
0 answers
558 views

I would like to extend SharePoint "New" menu with a custom item. How can I add a custom item to this menu ("Home" page "New" menu)? I can use whatever works (like, SPFx, ...
1 vote
0 answers
364 views

I'm in the process of building Sharepoint webparts using the Sharepoint Framework. I have followed the steps as described at https://learn.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/get-started/...
5 votes
0 answers
791 views

I'm attempting to retrieve some data from a custom Azure Function written in C# [EnableCors] [FunctionName("Authenticate")] public static IActionResult Run([HttpTrigger(AuthorizationLevel.Anonymous, "...
1 vote
0 answers
308 views

I'm attempting to build a dynamic property in the Property Pane of a React based Sharepoint Online Web Part. In order to achieve this I wish to iterate through an array of data in the PP, to create ...