View
17 TopicsSharePoint Online List Webpart Views Ignored (Team site Classic Experience)
Can anyone confirm that none of a list's views can be applied to it inserted in to a page as a web part? The Web Part Properties section gives the following message if anything other than All Items is selected for Selected View: Cannot save all of the property settings for this Web Part. Cannot complete this action. Please try again. I thought the issue might be with my custom list, so I created a new list using the Recipe Tracker template. I made no additions, changes, or edits to the list content or definition. I created a new Web Part page and inserted the Recipe Tracker Web Part. The behaviour is the same. Steps to reproduce: Go to https://<yoursite>.sharepoint.com//_layouts/15/viewlsts.aspx Click on + New Click on List Scroll down and click on Recipe tracker in the "Templates" section under the "From Microsoft" tab. Click on Use template Click on Create Go to https://<yoursite>.sharepoint.com/SitePages/Forms/AllPages.aspx Click on + New Click on Web Part Page Type in a name for the page in the "Name:" text box. Select Full Page, Vertical in the "Choose a Layout Template:" list. N.B. the selection here did not seem to make any difference to the outcome. Select Site Pages in the "Document Library" drop-down. N.B. the selection here did not seem to make any difference to the outcome. Click on Create Click on Add a Web Part Click on the right-facing arrow until you see Recipe tracker in the "Parts" list. Click on Recipe tracker Click on Add Select the Recipe tracker web part Click on Web Part tab at the top of the ribbon Click on Web Part Properties in the "Properties" section of the ribbon Select Recipe gallery from the "Selected View" drop-down in the "List Views" section on the right-hand side of the page Click on OK Receive error message, and the view has not changed.917Views0likes1CommentNew Item Form View
While I was trying to edit the columns and information on a list, I must have clicked on something, but now I am not getting the same format whenever I try to "add a new item" on the list. It opens on sharepoint vice a pop-up window. Does anybody know how to revert back to the original form format? Below are screenshots of how it used to look (top) and how it is now (bottom). I tried advanced settings and switching from new and classic view already and it stills look like the bottom picture. Thank you!!2.4KViews0likes3CommentsPadding before the next field
Hi All, Is it possible to create padding before the next field. I have a Description field which starts after the Title however the Title can be 1 line or 2 or 3. In this case, I do want the title to be take up to 3 lines but I would like to start the next field at a fixed position not relative to the title OR alternatively after there is space for 3 lines of title. This will make sure the rest of the card is aligned. Is there any JSON code that can achieve this for my Sharepoint Gallery ViewSolved2KViews0likes1CommentJSON View Formatting - Count total number of items in SP list
Hi, I want to modify the groups footer of a custom view that is grouped by a metadata column named Response/Actionv2. In the Totals section of the view settings I enabled Count for this column, which now displays the number of items (rows) for each of the groups. However, I would like to use this number in the JSON formatting to calculate and display the proportion (in percentage %) of total number of decisions. As you can see in the code below, I've included the static number 31, but I'd like to be able to dynamically reference the total number of items in the list? Basically, do you have an idea on how to implement this formula: (@columnAggregate.value / TOTAL NUMBER OF ITEMS) * 100 { "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json", "groupProps": { "hideFooter": false, "footerFormatter": { "elmType": "div", "children": [ { "elmType": "div", "attributes": { "iconName": "CalculatorPercentage" }, "style": { "color": "=if(@columnAggregate.type == 'Count' && @columnAggregate.value < 50, '#d13438', '#107c10')", "font-weight": "600", "margin-top": "10px" } }, { "elmType": "div", "style": { "color": "=if(@columnAggregate.type == 'Count' && @columnAggregate.value < 50, '#d13438', '#107c10')", "font-weight": "600", "margin-top": "10px", "font-family": "Segoe UI" }, "txtContent": { "operator": "*", "operands": [ 100, { "operator": "/", "operands": [ "@columnAggregate.value", 31 ] } ] } } ] } } }7.2KViews0likes1CommentDownload button in View formatting JSON
Hi, Im create a view in a document library to give an overview of the files with a description. On that view I would like a download button, to download the files directly. On known file formats link JPG i just opens the file and on unknown formats link EPS it dowloads the file. The code looks like this: "elmType": "button", "style": { "background-color": "#6eb556", "color": "white", "font-weight": "bold", "font-size": "1rem", "float": "right", "margin-right": "150px" }, "customRowAction": { "action": "Download" }, "txtContent": "Download", "attributes": { "class": "sp-row-button" Is there a way to force it always to download the file?7.3KViews1like2CommentsApply view only for a specific folder
Hello everyone I have a folder within a default document library which is connected to a team in teams. So, in this folder I have documents that must be sorted by its number in the file name. Example: File_1 File_2 ... First, I figured out that it isn't possible to sort numeric, if the number is only in the filename. SharePoint will then sort it like: File_1 File_11 File_2 ... Very frustrating but okay. So, I created a numeric column that can be used to sort the files properly. But what I noticed is that the column is now visible in the whole document library 😞 So now my question: Is it possible to apply the column to only being visible in this specific folder where I need it? I tried it with different views and so on, but it seems that this cannot be achieved. Thanks for your help.8.5KViews2likes1CommentDefine a view without hyperlinks
Hi, I need to define a Document Library view in which the name of the file is not a hyperlink. I tried defining a custom column with calculated value, but the [Name] field is not available in calculated formula. Is it possible to perform this task? How? Thank you.464Views0likes0CommentsSharePoint 2016 view filter by subsite name
Hi, I have a list webpart who give project info. Title of the project Description of the project. This list is create at the site collection level. When I fill the new project forms one elements is create in this list. A workflow start at the creation and a subsite is create for the new project with a subsite template. I have create another list at the site collection level where I have a workflow who start at the creation too. This one generate user access for the subsite. The goal is to make the work more easy for the user who create the project. So I have create a wikipage at the site collection level who are an import of the list use to create the project. I have create this page in SPDesigner 2013 and via designer I have export this page like custom webpart. Like this, I could add this custom webpart on a wikipage create in the project subsite. Like this custom webpart is linked with the list at the site collection level, if I add elements on it, the list is updated at the site collection level and vice versa. That's work great, but this kind of link view doesn't have all list properties Like Connection option. So when I generate a new subsite project, my wikipage present all project and all user access. My goal is to present on each wikipage in each subsite, only the information in link with this project. Ex: one line with the name of the project and the description where the name of the project is the name of the subsite. So If i create a project name test5, my workflow create a subsite name test5 with the URL http://sharepointxxx.com/sites/project/test5 I would like than the webpart present only the elements in link with project title test5. I have find than I could create a view filter with the active user properties. When I check the code of the page I have this query. I would like change "UserID" for Site title. But each test I have make give an error or no result in the list. <Query> <Where> <Eq> <FieldRef Name="Author"/> <Value Type="Integer"> <UserID Type="Integer"/> </Value> </Eq> </Where> </Query> Actually in the view forms I use a filter 'create by' with the connected user properties between [ ]. Any hint is welcome.Solved1.5KViews0likes2Comments