developer
3040 TopicsSharePoint Online - How to keep left navigation expandable
Hi All, I am using SharePoint Online site collection. I have created Left navigation menus with sub menus. I want this menus should be expandable in SharePoint Online site. We had used SharePoint 2013 in that Left navigation showing expandable with sub menus so just line I need this behavior on SharePoint Online. Thanks, Harish Patil3Views0likes0CommentsSharePoint List - How to open Edit Current View option in same Tab
Hi All, Currently I am using SharePoint Online site collection. In that list if I click on Edit current view option from any view then it open in new Tab to edit view settings. How to open that in the same Tab? As in SharePoint 2013 if you modify list view then it opens in same Tab so this same behavior want in SharePoint Online. Is there any way to open in same Tab on SharePoint Online List. Thanks, Harish Patil4Views0likes0CommentsRetrieve Term Navigation Properties using REST API
I've set up a Term set in the global term store and enabled Navigation so I can add URLs for each of the Terms. Note that I'm not going to use the Term set navigation in my site - it's only there to try and retrieve it from my SPFx webpart. Note that I can get all the terms under my Term set - just not the navigation properties. Below is what I'm trying to get the navigation properties: https://TENANT.sharepoint.com/_api/v2.1/termStore/sets/TERMSETGUID/terms/TERMGUID/properties But I get: "The property 'properties' is null or does not exist". Also, expand doesn't seem to work at all. I'm not looking to use pnpjs or even graph if I can help it. Any ideas welcome.47Views1like5CommentsFunction of "GET IT" button in Sharepoint app?
Hello, I have a question related to Sharepoint deployment. Context: I have two Sharepoint sites. Both have the same webpart application but different version. But they both display the lastest version of the webpart. Questions: - What the function of the "GET IT" button in details of the application if both running different version and still have same webpart? - How can I deploy different version to each site because I plan to have two sites DEV and PRO? Thank in advance.Solved21Views0likes1CommentConnected Sharepoint to a Postgree database
Hello, I would like some help in connecting a PostGree database to SharePoint. I would like to be able to use the data contained in this database in lists. I should point out that I have no particular expertise on the subject. I would gladly accept a step-by-step guide. 😅31Views0likes2CommentsJSON formatting affecting Tile view when pic is modified
Hello! I am hoping someone can help with a random annoying JSON formatting issue I'm having! I am using a SharePoint list with a Tile view. It's JSON formatted to fit the file thumbnail on the tile - all good so far (I believe anyway, JSON is not something I am overly familiar with!). However, I've noticed when I modify the photo, the thumbnail ends up tiny on the tile and no amount of refreshing the screen changes it. Why is this? How can I sort it? See below, the pic on the left is the standard view size when the file is uploaded. The file on the right is post-modification (when it used to be the same size as the left picture and all I did was change it from a colour photo to B&W). This is my JSON formatting on the view itself: { "elmType": "div", "attributes": { "class": "sp-card-previewColumnContainer" }, "children": [ { "elmType": "div", "attributes": { "class": "sp-card-imageContainer" }, "style": { "max-height": "260px", "display": "flex", "object-fit": "contain", "justify-content": "center", "align-items": "center" }, "children": [ { "elmType": "filepreview", "attributes": { "src": "@thumbnail.small" }, "style": { "max-height": "100%", "max-width": "100%", "display": "inline-block", "object-fit": "contain" }, "filePreviewProps": { "fileTypeIconClass": "sp-fileTypeIcon-cardDesigner", "brandTypeIconClass": "sp-brandTypeIcon-cardDesigner" } } ] } ] },15Views0likes1CommentFunction of "GET IT" button in sharepoint app?
Hello, I have some questions related to deployment in sharepoint. Context: I have two sharepoint sites. Each have same application that run a webpart. Both have different version but still run the lastest webpart. Questions: What is the function of the "GET IT" button in sharepoint if both sites have lastest deloyed webpart. How can I deploy two different version of a webpart to two sites. Example a devlop site and a production site? Thank in advance.13Views0likes0CommentsSharePoint Online Threshold Limits – Critical Impact and Architectural Guidance Request
Dear Microsoft Support Team, We are the central IT service provider managing a productive SharePoint Online environment for one of our enterprise customers. As part of a migration project (merger), we encountered a significant issue related to the exceeding of Microsoft-recommended thresholds in SharePoint Online. The resulting impact disrupted critical business operations. We kindly request confirmation, technical explanation, and the most up-to-date Microsoft recommendations (including sources) regarding the following topics: Threshold Clarification What are the current Microsoft-recommended maximum limits for: Total number of files/folders in a document library Total number of files/folders within a single folder or path Maximum number of items to maintain functional permission management Maximum number of items that allow stable OneDrive synchronization Technical Impact Questions What are the consequences when the 100,000-item threshold is exceeded within a folder path, especially when changing access paths (e.g., department name changes)? What are the technical causes of the extended "re-synchronization" process triggered by path changes? Architectural Guidance How should a Site Collection or library be structured to ensure: Scalability for enterprise use Effective permission control even with over 1 million files Smooth OneDrive sync functionality Future-proofing against disruptive changes (e.g., metadata updates, path modifications) Known Thresholds / Internal Guidelines: Maximum per library: 30 million items (Source: Microsoft Docs) Permission management limit: 100,000 items (breaking inheritance not possible beyond this) OneDrive sync limit: 300,000 items (Source: Microsoft Docs) Help is needed: Recommendations on how to architect large-scale document libraries Best practices to avoid the aforementioned issues Clear indication of the thresholds that must not be exceeded in an enterprise-grade SPO environment87Views1like0CommentsReact and MSAL No active account found for Graph API after login Ensuring Account Readiness
Hi everyone, My React app uses Microsoft's MSAL library for user login. After login, it needs to show SharePoint images (like thumbnails in a table) using the Microsoft Graph API. The Problem: Often, right after a user logs into my app (using the Microsoft login popup), when my app tries to get these SharePoint images, I get a "No active account found" error. It seems like MSAL doesn't have an active user account ready for the Graph API call at that exact moment, even though MSAL itself says the user is logged in and that it isn't busy with other login tasks. This usually happens when the page first tries to show these images immediately after the login finishes. An Important Clue: I found something interesting: if the user first opens any SharePoint site in their browser (like in another tab) and then uses or refreshes my React app, the images load perfectly without any error. This makes me think it's a timing problem – my app might be trying to get the images too quickly after login, before the browser's connection to SharePoint is fully ready for my app to make requests via the Graph API. I am trying to make my app wait for MSAL to completely finish its setup, and I also double-check that MSAL has an active user account before I ask for the images. But, the error can still happen if the user hasn't done that manual SharePoint visit first. My Question: What's the best way in a React app (using MSAL) to reliably make sure that everything is truly ready – both the MSAL login being complete AND my app being able to successfully use the Graph API for SharePoint resources – immediately after a user logs in? I want users to see the images straight away without needing to manually open SharePoint first for the images in my app to work. Any tips or advice on how to best handle this "not quite ready yet" timing with MSAL and SharePoint would be a huge help! Thanks!17Views0likes0Comments