App
536 Topics- 16Views0likes1Comment
React SPFx web part becomes invisible on random page refresh – Need help diagnosing issue
Hello Everyone, I am facing a random rendering issue with a React SPFx web part (HelloWorld2) on SharePoint Online. The web part becomes invisible on page refresh, and I need help diagnosing the cause. Setup Steps 1. Solution Source Code Here is my source code and steps followed for deployment: https://github.com/JagtapY17/DemoProjects/blob/main/SPOnlineWP.zip Download and extract the SPFx solution Open the solution directory in the command prompt Run the following commands: npm install gulp bundle --ship gulp package-solution --ship Retrieve the generated .sppkg file from: sharepoint/solution/sp-online-wp.sppkg 2. SharePoint Online Deployment Steps performed in SharePoint Online: Created a new Community Site (Department template) Uploaded the .sppkg package into the App Catalog Added the app to the site (Site Contents → Add an app) Added the HelloWorld2 web part to the homepage (placed at the top) Added 8–9 other web parts below it on the page Issue / Question After adding the web part: The HelloWorld2 web part renders inconsistently on page refresh Out of 10 refreshes, 6–7 times the web part does not render at all Other web parts load fine every time No browser console errors appear It seems the web part gets skipped randomly during the page render pipeline I request community members to: Check the provided solution package Review the HelloWorld2 web part code Suggest the possible cause of this intermittent non-rendering issue Any insights or debugging suggestions will be greatly appreciated. Thank you! DemoProjects/SPOnlineWP.zip at main · JagtapY17/DemoProjects Projects for Testing . Contribute to JagtapY17/DemoProjects development by creating an account on GitHub.25Views0likes0CommentsBest way to build a dynamic data driven navigation, that can be restricted based on security roles
Hi All, I'm in the process of designing a power app and would like to use the tab control or gallery for the menu. Looking for advice on how best to wrap authorization around the navigation for example to check if a logged in user belongs to a role they can see only specific menu item or disable a link button etc.. Any advice would be appreciated Thanks in Advance202Views0likes3CommentsSharePoint online document library - document properties not getting update values in word document
Hi All, We have created an application in SharePoint online. This application creates Word documents in which SharePoint list fields are merged. When creating a new item in SharePoint, the Word document shows the correct date values: 1. Create new item in SharePoint. Dates are 1/9/2025 and 2/9/2025 2. Opening the related word document shows This is correct behavior 3. Change any field through 'Edit properties'. Still the dates are 1 and 2/9/2025 4. If I open the Word document now I see that the dates have a value of 1 day less then the provided date. The category is updated correct. 5. When downloading the document the correct values are shown 6. Also when opening the document through View in browser > Edit document > Open in desktop, I see the correct values Question is: 1. Why don't we see the correct values when the Word document is directly opened in the browser? 2. Is there a possibility to open the Word document always in the Client (desktop) itself instead of directly on the browser? We already tried changing the below Advanced library settings (changed it in Open in Browser/use the server default), but this didn't gave the correct solution.130Views0likes1CommentSharePoint List calculated column formula using a Lookup column reference
Given: A SharePoint List (SPL) called Contractors with the following columns: ContractorID // Display name of the default ID column ContractorName Another SPL called Reports with the following columns: ReportID // Display name of the default ID column ReportNumber // Calculated column Contractor_ID // Lookup column referring to the ContractorID column of the Contractors SPL The calculated column, ReportNumber, would have a formula similar to: = [ReportID] & "-" & Contractor_ID Question: Does SharePoint Lists support the use of a Lookup column in the formula of a calculated column? If so, I need help on the proper syntax for the formula. (The formula above is not working) Thanks in Advance85KViews1like9CommentsHow to hide Command bar in Sharepoint using SPFX Extension without CSS injection?
I know there are similar questions on the Internet. But none of it have the solution that I am looking for. I want to hide few action buttons (New, Edit in Grid View, Add shortcut to OneDrive, Pin to Quick Access, Share, etc.) in SharePoint Command bar using SPFX extensions. enter image description here I know it can be achieved by injecting custom CSS with display: none property. But the problem is, in case in future if Microsoft updates the html element then this solution might break. Another approach is to use JSON Formatting. But this needs to be done from SharePoint UI or by calling the SharePoint API to apply the JSON formatting. But I don't want to do this. Initially my approach was: Access the command button like const newCommand: Command = this.tryGetCommand("newComposite"); newCommand.visible = false But I am getting undefined when I access it. Is there any way to hide the command buttons from the code itself using SPFX extension.98Views0likes0CommentsHow to get Calculated Column Microsoft List appear in Power AutomateSharepoint Dynamic Content
Hi, I need advise on current issue I'm having. I have an Inventory List in Sharepoint. 1 of the column is calculated column. When the quantity in this column is less than 10, I would like to set rules - send email reminder to top up. However, I couldnt find Dynamic Content in the Power Automate flow. Can anyone help?Solved217Views0likes4CommentsSharepoint List Lookup question
Hi I have a Sharepoint list which uses columnn "sfg" as a look up, it then returns "sfglifecycle" for instance. I want to add a calculated column that references uses the figure that's been returned in "sfgLifecycle" and times it by ten, is this possible? if so, how do i go about doing it?167Views0likes2CommentsSharePoint/Word: Change in permissions turns off autosave.
Hi, We have the following issue: In a SharePoint, to which users get access based on access groups, users have Edit access to Word docs by default. When the user opens the Word file in Word desktop the AutoSave is turned on. When you change to review yourself, AutoSave is also turned on. This works correctly. However, when the permission to the document is changed to Review before sharing and the user the doc is shared with opens it, the AutoSave is turned off when opened in Word desktop. Users are able to choose Edit anyway to continue editing and then the AutoSave turns back on. My question is: is the AutoSave turned off by switching the permission to Review? If so, how can we change that this does not happen. Or is it supposed to work like that? When searching online and in the MS community I cannot find a clear answer on if it supposed to work like this. Some say Review turns the AutoSave off, others say it should not.108Views0likes2Comments