Nov 01 2021 07:01 AM
I have multiple SharePoint Online site collections that are all exhibiting the same problem with certain webparts. When a page loads that contains a quicklinks, hero app, or weather app, the wep part will randomly not load correctly. When it fails, the web part will format incorrectly, will be missing content (document or webpage links), or will be placed on the page incorrectly.
For example, I have a page section with 3 columns, each containing a quicklinks webpart with links to documents. 50% of the time when i load that page, the first column does not show at all, the second column has the quicklinks header but no content, and the third column has the quicklinks header and content icons that have been shrunk with no link descriptions. I refresh the page, and the intended formatting loads correctly, showing all webparts and content.
I have multiple pages that this occurs to, with different combinations of webparts and content. Has anybody seen this before?
I have an attached example of a 2 column wide page section. The first image is initial page load, and the second image is after a manual refresh. (This issue happens in Chrome, Edge, Firefox, and IE)
Nov 06 2021 07:19 AM
Nov 23 2021 09:28 AM
Agreed @Rick DeFoe. I created a SPFX WebPart that queries the search service, and surface the web part on a page that I use with managed navigation (thus the search is context specific to the navigation link selected in the menus). The webpart is not refreshing on the transitions. Oddly if you select the same managed navigation menu link twice, it refreshes...otherwise a manual refresh is needed. I'm exploring ways to try to force a refresh/reload of the page via HTML/Javascript and suspect I'll need to tweak the master page.
Jan 27 2022 09:56 PM
I am experiencing the same, have you resolved this? @Matthew2370
Feb 02 2022 07:43 AM
Hey @Scrum5,
I ultimately had to get into the Type/Javascript level on this to get it to work (window, etc). Managed to nail it down by adding this to my Init code in the SPFX web-part. Hope it helps you!
*****
protected async onInit(): Promise<void> {
await super.onInit();
navterm = window.location.pathname.substring(window.location.pathname.lastIndexOf('/') + 1);
((history) => {
var pushState = history.pushState;
history.pushState = (state, key, path) => {
pushState.apply(history, [state, key, path]);
this._onUrlChange();
};
})(window.history);
window.addEventListener('popstate', function (e) {
// Currently browsing by the browser history buttons ( back / forward )
// doesn't cause any effect on a sp conditionally loaded page.
// this._onUrlChange();
});
Feb 16 2022 05:19 AM
Feb 18 2022 06:39 AM
Apr 12 2022 09:45 AM
Apr 12 2022 10:12 AM
Apr 19 2022 05:43 AM
@Andy_Jackson nope, still an issue... And no comment form the Microsoft team 😕
Apr 25 2022 05:15 AM
We reported this issue at the start of April as well. It is important to note that it is impacting all types of SharePoint online sites (communications and teams). We have received reports from multiple users that content is missing until refresh. Thank you for continued work on resolving this important issue as many important links are being overlooked.
Jun 02 2022 04:58 AM
Apr 27 2023 08:25 AM
@radhe2030 I can confirm I'm still facing the same issues. The lack of response from the Microsoft SharePoint team is quite shocking on many of these issues. Perhaps more development time is needed than keynote speeches!?
Jul 12 2023 10:19 AM
Jul 13 2023 07:08 AM
Jul 13 2023 01:23 PM - edited Jul 13 2023 03:04 PM
Same issue here. What's even stranger is that when I click on a link from one page it works fine but when I click on the the same link housed on a different page, it doesn't work properly.
Edit:
I tried something that may or may not work for you. I added a querystring to the end of the URL in the link I was using and it seemed to work but I'm not entirely sure if I jarred something loose when playing around with SharePoint's own keywords used in their querystrings.
I added "?ver=1" without quotes to the end of the URL. It can probably be any key/value text but I thought this was the most ignorable querystring a user might see in the address bar.
See if this works for any of you.
Jul 18 2023 07:52 AM
Aug 25 2023 01:37 PM
Jan 11 2024 03:51 AM
I observe the same issue today on our tenant. Any solution found for this issue?
Feb 19 2024 02:11 PM
We are having the same issue with our SharePoint site. Just on one page that has a lot of different web parts on it. The entire page refuses to load unless you hit refresh. Tried multiple browsers, and cleared the cache completely, including all cookies. The issue remains. Any fixes out there?