Forum Widgets
Latest Discussions
RefinableStrings managed properties are assigned to crawl properties only at the site level
I accessed the managed properties at a site level scope inside SharePoint online, and I found some refinable strings assign to crawl properties, but when I accessed the same refinable strings at the tenant level i found that those managed properties do not have crawl properties assign to them, here is a example for RefinableString06:- Site level Tenant Level Also the confusing issue is that inside the UI the ability to assign crawl properties to those managed properties are disabled on the site level, so how those got assigned?johnjohn-PeterOct 03, 2025Iron Contributor8Views0likes0CommentsCreating SharePoint Intranet from scratch - What would you do?
Hello, I've just started at a new company and they desperately need an intranet created for the purpose of communication (announcements, etc.) and document management. The company I came from had already begun their design and development journey with a particular vendor prior to me being onboarded there. They mostly used out-of-the-box functionality with a bit of custom development for some things. It was a Classic site. This vendor did fine work but I am overall curious which direction you'd go given the opportunity to do it from scratch; either using any vendor you want and/or developing it yourself and the resources you'd use to accomplish that. I've of course Googled this myself but any direction or insight is greatly appreciated! Thank you, MorghanmdcastorenaOct 03, 2025Brass Contributor2.1KViews0likes5CommentsSharePoint Framework
Let me explain you my scenario and use-case about what I am trying to build with SPFx. As i have tried all the possible Form customizations using PowerApps, SharePoint Forms, etc.. and not able to get the expected results. I am creating a primary list named Sales Leads List wherein i am tracking each leads getting in from our sales team. And i am creating related list named Lead Interactions to track the interactions associated with specific Lead of Sales Lead List. What i want to achieve is: I am creating a Add Interaction column/button on each lead of Sales Lead List. When user clicks this button, a Lead Interactions form should open with certain fields gets pre-populated from this Leads entry. Is it possible to achieve this use-case with SPFx and how?Tarang_7Oct 03, 2025Copper Contributor2Views0likes0CommentsSearch results, document link goes to Page Not Found
When searching the site for a document (which is there), the link under the file goes to a Page Not Found. If I go to that URL, I see the file, but the link in the search results seems to be broken. A couple of things I am thinking could be the issue, so wanting to verify or if it is something else: Document library has 50,313 items File name could be too long (which includes the folder paths). I've re-indexed the library and will check if that helps.Kim WilliamsOct 02, 2025Brass Contributor10Views0likes0CommentsSet image focal point not working
When adding an image header to a SharePoint page, the "Set image focal point" is not working. Instead, it crops the image, and users are not able to control what part of the image is displayed in the header. I am wondering if this is a temporary glitch? Otherwise, there might not be a reason to have this button available in SharePoint in the first place. Anyone else experiencing this? I've just noticed it this week, but my colleague says this has been how header images work in her system for weeks.Vanessa_Arita_ReyesOct 02, 2025Copper Contributor169Views4likes7CommentsCan't switch off grid view
We've a number of pages (about 90) We have a couple of views on each page (different for each one) from a main List This works for most of the pages/views we have. However some have defaulted to Grid View and we can't switch it off How can we get rid of this? we don't want grid view only the link to the Canvas App form to enter information. We've no idea why it's appeared and we can't get rid of it. Does anyone have any idea how we can revert these to the default view. ThanksMartin2022Oct 02, 2025Copper Contributor42Views0likes1CommentLibrary View of Files Stored in Folders
I have a document library containing several folders, one of which is Job Descriptions. In the Job Descriptions folder, we have a list of all company job descriptions. The job description documents are PDF'd and the naming convention used for the job description is all lower case separated by dashes. We also have a column called DisplayName which shows the file in a more friendly name. For example: executive-assistant-to-the-director.pdf would be the name of the file, but the Display name is Executive Assistant to the Director.pdf. We would like to add a document library webpart to a SharePoint page, have it filter the document library, selecting the Job Description folder. What would be displayed to the page visitors is a list of all the folders and when they select a folder they would see the Display Name, in which they can click and open the PDF. I must be missing something in my View of the document library as if I show the Display Name and not show the Name of the file, then the folder name is reviewed too. Any ideas?Annette1101Oct 01, 2025Brass Contributor40Views0likes2CommentsNews page banner images issue
Hello all, Starting yesterday (September 24, 2025) when I create a news page, there's a few issues with how SharePoint is managing the banner image: It seems to copy the image instead of directly using the one from the library When I move the focal point, it creates yet another cropped copy of the image (both being automatically added to the Site Assets folder, under a new folder automatically created with the page name) If I save and move the focal point again, it creates yet another image The thumbnail in the news web part and hero web part is extremely zoomed in and blurry, rather than the full image as it used to be. I can no longer focus the image on any part of the original 1920x1080 image, as it crops the image to the banner size and then only allows me to focus there, which is almost completely pointless since its around 1920x300 at that point. I am using a 1920x1080 image. Some screenshots attached: Original 1920x1080 image What it offers when I'm trying to focus the image Does anyone know if this is a setting that somehow got changed, or a bug? Any advice is appreciated. Thank you! EDIT 10/1/2025: The banner image focus is now working as intended. Seems it was a temporary bug.Russ-OOct 01, 2025Copper Contributor59Views2likes2CommentsSharepoint no sync for userdata
Hallo together, I tried to do a Employee page with SP Modern Search. So far so good and everything is working. Now the AD Userdate got corrected and Emails like Max.Mustermann... got changed into max.mustermann... Deltasync had done everything and AAD are synced but the Sharepoint Search are not interested in and still shows Max.Mustermann... And i cant find a way to start that syncjob. Anyone hint me in the right direction ?GerhardSillippOct 01, 2025Copper Contributor25Views0likes0CommentsAI- based Post Sorting
I have developed a Post and Comment module inside SPFx. where i have 3 sharepoint list:- Posts Comments Reaction here is the SPFX, with 2 posts and the first post has 2 comments:- Currently the Posts and their Comments will be shown sorted by the created date , here is the method to show the posts:- async getPostsPage(pageSize: number = 10, afterId?: number) { let url = `${this.siteUrl}/_api/web/lists/getByTitle('SocialPosts')/items` + `?$select=Id,Title,Body,Created,Author/Id,Author/Title,LikeCount,CommentCount` + `&$expand=Author&$orderby=Id desc&$top=${pageSize}`; if (afterId) url += `&$filter=Id lt ${afterId}`; const data = await this.getJson<{ value: any[] }>(url); return data.value.map(v => ({ Id: v.Id, Title: v.Title, Body: v.Body, Created: v.Created, AuthorId: v.Author?.Id, AuthorTitle: v.Author?.Title, LikeCount: v.LikeCount || 0, CommentCount: v.CommentCount || 0 })) as import('../Models/Models').Post[]; } and the comments:- // ---------- Comments ---------- async getComments(postId: number): Promise<Comment[]> { const url = this.commentsUrl() + `?$select=Id,Body,Created,Author/Id,Author/Title,LikeCount,Post/Id,PostId` + `&$expand=Author,Post&$filter=PostId eq ${postId}&$orderby=Created asc`; const data = await this.getJson<{ value: any[] }>(url); return data.value.map((v) => ({ Id: v.Id, Body: v.Body, Created: v.Created, AuthorId: v.Author?.Id, AuthorTitle: v.Author?.Title, LikeCount: v.LikeCount || 0, PostId: v.PostId ?? v.Post?.Id, })); } but the client is asking us if there is a way to order the items using AI algorithm so it show the most relevant posts and comments first? which approach i can follow? to allow order items inside SPFx using AI algorithm instead of Created date?? any advice?14Views0likes0Comments
Resources
Tags
- SharePoint Online18,107 Topics
- Document Library3,169 Topics
- Lists3,090 Topics
- Sites2,554 Topics
- admin2,225 Topics
- sharepoint server2,022 Topics
- Permissions1,962 Topics
- files1,689 Topics
- developer1,586 Topics
- microsoft lists1,538 Topics