Asked by:
Not able to see react script editor webpart in SPFX in one particulat SiteCollection

Question
-
All replies
-
ensure that package (.sppkg) with this SPFx web part is created with skipFeatureDeployment attribute set to true (see Tenant-scoped solution deployment for SharePoint Framework solutions):
{ "solution": { "name": "tenant-deploy-client-side-solution", "id": "...", "version": "1.0.0.0", "skipFeatureDeployment": true }, "paths": { "zippedPackage": "solution/tenant-deploy-true.sppkg" } }
In this case solution is considered as globally deployed and become available on all site collections immediately after you upload sppkg to AppCatalog and confirm that you trust this solution (there is additional popup dialog shown when you deploy globally deployed solutions to AppCatalog)
Blog - http://sadomovalex.blogspot.com
Dynamic CAML queries via C# - https://github.com/sadomovalex/camlex -
Hi i deployed the solution in site collection level and i uploaded the .sppkg file under site collection appcatalog.
I able to install the app but i am not able the webpart under webpart adding section.
I am not doing tenant deployment.
{"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json","solution": {"name": "Modern Script Editor web part by Puzzlepart","id": "1425175f-3ed8-44d2-8fc4-dd1497191294","version": "1.0.0.15","includeClientSideAssets": false,"skipFeatureDeployment": false},"paths": {"zippedPackage": "solution/pzl-script-editor.sppkg"}}Any thing i missed out?
-
Hi Rajesh,
Please try to create a sub site in the site collection and add the Modern Script editor web part app, then check if it exists in web part list in modern page.
Best Regards,
Dennis
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
SharePoint Server 2019 has been released, you can click here to download it.
Click here to learn new features. Visit the dedicated forum to share, explore and talk to experts about SharePoint Server 2019. -
-
Hi Rajesh,
Delete this web part from the site collection and recycle bin, then install it again to check if it works.
Best Regards,
Dennis
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
SharePoint Server 2019 has been released, you can click here to download it.
Click here to learn new features. Visit the dedicated forum to share, explore and talk to experts about SharePoint Server 2019. -
can you see your app in Site content > Apps after you have added it to site collection App catalog? If yes - try to add it from there.
Blog - http://sadomovalex.blogspot.com
Dynamic CAML queries via C# - https://github.com/sadomovalex/camlex