Error saving person details into SharePoint List
2 TopicsHow to format a column in the PnP Search Results Web Part
I'm trying to get a column in my PnP Search Results web part to be blue or grey for the background color, depending on the content in the column. The Visit Page column should be grey if the page is coming soon or blue if the page is available, so it should look like this: For the Visit Page column, this is what I have: <!-- If the URL length is less than or equal to 53, make the background grey --> {{#if slot item root.slots.PreviewUrl.length <= 53}} <a href="{{slot item root.slots.PreviewUrl}}" target="_blank" style = " padding: 10px 10px 10px 10px; cursor:pointer; border:none; color:white; font-weight:550; background-color:#A4A4A4; text-decoration:none; font-size:14px; text-align:center; display: flex; justify-content: center; "> {{slot item root.slots.VisitPage}} </a> <!-- If the URL length is greater than 53, make the background blue --> {{else}} <a href="{{slot item root.slots.PreviewUrl}}" target="_blank" style = " padding: 10px 10px 10px 10px; cursor:pointer; border:none; color:white; font-weight:550; background-color:#0078d4; text-decoration:none; font-size:14px; text-align:center; display: flex; justify-content: center; "> {{slot item root.slots.VisitPage}} </a> {{/if}} When I try the code above I get a parse error:1.1KViews0likes0CommentsError saving staff details into SharePoint List
Hi, We currently facing some issue saving person details into SharePoint list. We have an existing PowerApps forms which serve as an online application form. Once the form has been submitted, the data will save into SharePoint List and an approval workflow will kick-off. The form has been working fine since last year until recently we noticed that it stop working. We are having this error - An entry is required or has an invalid value. Please correct and try again. This is an error on the person mandatory fields in PowerApps, even though the staff profile has been selected from a ComboBox selection list. SharePoint does not seem to register this selection and return the error and no new item is created. We are having the same issue with another case where instead of PowerApps, Microsoft Forms is used to collect data and save into SharePoint List. Has anything been changed recently? Wonder is there someone else facing the same issue and any fix for this? Thanks1.4KViews0likes4Comments