List Web Part
2 Topics"See all" link on modern List web part nis not navigating to custom list view
Hey all, I am using the List web part on a modern SharePoint page to display a custom view of my original list that displays items based on the current user. i.e. I am filtering by [Me] on this specific view. The List web part displays this data fine, however, when the user clicks the "See All" link to the top left, they are being redirected to the full list of all employee data. Is there some way or alternative method to redirect the user to the filtered view instead? I have thought of building out a web part using SPFx and React to display the filtered view so that users won't have the "See All" link. However, this eliminates the functionality of allowing the user to delete list items that the list web part already offers.... I am open to any alternative means to achieving this. Thank you!Solved2.4KViews0likes3CommentsSharePoint List Web Part - Column Formatting Links
This post is meant to address why the column formatting for "target": "_blank" doesn't work in the SharePoint list web part. I have a SharePoint lists which has the Title column formatted to open a link. The JSON is set to open the link in a new tab. This functionality works when viewing the list itself, but when I put it on a page using a List Web Part, the link opens in the same tab. The real problem is when the link doesn't open in a new tab, after SharePoint navigates, the quick launch isn't updating to the subsite's navigation. I've seen posts on this specific issue before as well. The partial page loading/caching must be causing this. The two issues are somewhat unrelated. { "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "a", "txtContent": "@currentField", "attributes": { "target": "_blank", "href": "='[MySiteUrl]/sites/ops/[mySubSiteName]' + [$ID] + '/SitePages/Home.aspx'" } }4.3KViews0likes1Comment