Questions tagged [applicationcustomizers]
Adds scripts to the page, as well as access well-known HTML element placeholders and extend them with custom renderings
26 questions
0 votes
1 answer
154 views
Top Placeholder content renders underneath nav bar for small screen sizes
In my Sharepoint Online tenant, I have an Application Customizer that I am using to render a React component in the Top Placeholder. The Application Customizer renders on top of the Nav bar using a ...
0 votes
1 answer
526 views
Custom SharePoint online page flicker on load SPFX web parts
I have created an application customizer extension and put my custom header and footer in that extension which loads fine. I had to hide the OOTB ribbon and left bar as I wanted to have totally ...
0 votes
1 answer
262 views
SharePoint Online - Application Customizer isn't finding a tag
In SharePoint Online I am trying to hide the "See All" link that comes with the out-of-the-box List and Document Library web parts. So I followed this tutorial, Build your first SharePoint ...
1 vote
1 answer
612 views
React components not working in Customizer
I am trying to use react components following this tutorial. But when I load the page I am getting a bunch of errors in chrome console complaining about invalid relative path in loading react and ...
1 vote
1 answer
603 views
Modify the position of application customizer (Breadcrumb) SPFX
I need to change the position of an application extension on my page. It sits at the top, I want to drop it lower. The Microsoft documentation I have seen just points me to the top or bottom region. ...
1 vote
1 answer
615 views
SPFx Application Customizer and SPFx WebPart Connection
I know we can create connected SPFx webparts but is it possible to create the connection between SPFx application customizer and SPFx webpart? The scenario is that we need to create application ...
2 votes
1 answer
557 views
Add Handling page creation events in your SPFx application customizer
I have the following inside my application customizer SPFX extension, the code is responsible to load custom CSS inside the home page https://***.sharepoint.com/sites/customeroperations/sitepages/...
0 votes
1 answer
3k views
"gulp package-solution" will raise this warning "- [package-solution] This is not a production build (--ship or --production).."
I am following the steps inside this link @ https://docs.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/serving-your-extension-from-sharepoint to deploy my SPFX extension of type ...
1 vote
1 answer
2k views
SPFX Application customizer extension only run if i run it locally and will stop working when I deploy to the app catalog
I want to inject some CSS to my SharePoint page, so I follow those steps to create SPFX Application customizer extension:- md app-extension cd app-extension yo @microsoft/sharepoint What is your ...
0 votes
0 answers
460 views
Why the SPFX Application customizer extension only run on modern pages, without running on modern list views
I have created a new SPFX, with these settings:- Which type of client-side component to create? Extension Which type of client-side extension to create? Application Customizer and i added the SPFX ...
1 vote
1 answer
1k views
Spfx extension : Uncaught TypeError: Cannot set property 'innerText' of undefined
I am trying to change Save button name to Submit using below code but it does not work sometimes if I do load page twice below script throw error. My Script having JS is added in my Site Assets ...
1 vote
1 answer
2k views
SPFx header application customizer loaded multiple times when switching between sites
So we have developed a breadcrumbs extension that is supposed to work across all the sites within the tenant. The issue is that when switching between sites the headerPlaceholder is rendered multiple ...
2 votes
1 answer
2k views
SPFX: How to debug an application customizer extension
I am new to spfx and have to write an application customizer that changes the key of a query in the url. I have already implemtend this functionality and now want to test/debug. When I run gulp serve, ...
1 vote
1 answer
511 views
Application Customizer to hide Save button
I am trying to create the application customizer to hide save and cancel button from Newform.aspx in Modern UI, I tried writing below code but everything getting hide instead of Save button noticed ...
1 vote
2 answers
3k views
How do I figure out the path to CDN?
I am following this article to deploy add a script editor extension: https://medium.com/niftit-sharepoint-blog/add-the-script-editor-webpart-back-to-sharepoint-modern-experience-688a7b7208e4 I've ...