-
Search Results
-
Ever want to hide certain options in the ribbon in DispForm? I do!
Actions has options for “Alert Me” and “Workflows” which I don’t need users to see. You can hide these by adding this to the Custom CSS tab:
#Ribbon\.ListForm\.Display\.Actions
{display:none;}Another item I don’t need users to see is “Shared With”. There are two sizes so you need to add this to Custom CSS:
#Ribbon\.ListForm\.Display\.Manage-LargeMedium-1-1,
#Ribbon\.ListForm\.Display\.Manage\.ManagePermissions-Medium
{display:none;}Happy hiding!
Hi Alex,
I have a feature request.Current Behavior:
– Current view = View 1 (not the default view)
– User clicks into a record from that view.
– User clicks on edit to edit the record. Then saves the record.
– User click on close button in display form.
– User is taken back to list view. But this time user is taken to the default view instead of “View 1” (the originating view)Is it possible to have the user sent back to the originating view when the close button is clicked on “after editing a record from display form”?
Thank you,
Amal VellappillilHello,
We have task to convert SP10 on premise InfoPath form to DFFS.
In info path there is different form as per views for single list.Please see attached image, there is different view for single list in info path form.
How can i achieve this functionality in DFFs?
Hi Alex, how are you? any idea how to resolve a lookup field pointing to a list with more than 5000 records? I am trying to find a workaround on quick edit view and on the new/edit form. PowerApps custom forms will solve this? Dffs can solve this?
Hello,
I have three fields that I need to link together.
– Session Start Date (Date Picker)
– Number of Days
– Task Due DateThe user fills out the Session Start Date field (Parent List) and will click the Add Task button which opens the Task form (Child List). The user then chooses a task from the Task Name dropdown field (The Lookup list). Once they choose their task they need to add a number to the number of days field. -1 would be the day before the session start date, 0 would be the day of the Session Start Date and 5 would be 5 days after the Session Start Date. I need for the day entered to populate the read only Task Due Date field as it relates to the Session Start Date field. The Task Due Date field would be calculated using calendar days.
Example 1.
Session Start Date – 4/10/2021
Number of Days – -10
Task Due Date – 5/31/2021Example 2.
Session Start Date – 8/17/2021
Number of Days – 16
Task Due Date – 9/2/2021Can this be done using DFFS? Any help you can provide would be greatly appreachiated :).
Hi Alexander, this is not a big deal at all, just thought I’d bring it to your attention. When the list settings > advanced settings has attachments disabled, the forms will still show the option to apply attachments. This can wait for a larger update, just wanted to put it on your radar.
Attached you will find an image showing the issue. Notice that there’s no option to add attachments in the ribbon at the top because it’s disabled, but the DFFS form shows the option to add.
Simple solution for now is to just hide it in the rules.
Im trying to create a list that is used throughout my site collection that grows organically called CaseType and I cant figure out how to do it with SPJS-Lookup and Autocomplete. CaseType is a multichoice Lookup column on the Newform. If the type of case isn’t listed, I would like the user to be able to add a new one to the list and use that new CaseType in the current item and in the future. Therefore, I added a button to the form that opens the CaseType List newform Dialog box(see attached).
However, when you add the new CaseType, I cannot select that new one to the current form because it isn’t reflected in the multi Lookup yet. If my button refreshes the form after save, I lose all the data I added in the subsequent fields. And since this is a newform, that is an issue. Also, this CaseType list is being used on all other sub sites, Refiners within Search and I cant use managed metadata.
My script for the dialog new form:
<script type="text/javascript"> function displayLayover(url) { var options = SP.UI.$create_DialogOptions(); options.url = url; options.dialogReturnValueCallback = Function.createDelegate( null, null); SP.UI.ModalDialog.showModalDialog(options); } </script> <html><table><tr><td> <input type=button value="Add CaseType" onClick='javascript:displayLayover("https://DOMAIN/sites/##/Remand_Docket/Lists/Case Type/NewForm.aspx?IsDlg=1")'></button> </td></tr></table></html>
Topic: DFFS Email Alert
Hi Alexander,
I am trying to end emails from my DFFS form. But if I use a shared mailbox address or resource account, the emails never seem to reach their destination. Which is a shame as the email appears to come from “SP” not from a shared mailbox like in FLOW (Power Automate).
WORKS:
User email address – username@mydomain.com
Also {Author} and {Currentuseremail} workDOESNT WORK
Shared mailbox example – sharedmailbox1@mydomain.com
Resource Account – RA-DEPT-BLAH1@mydomain.comSeparate Note on not using REST api:
We are about to retire SP2010 workflows in our organisation. So I guess I can no longer use a custom list with workflow to send E-Mails? As you have to use platform type SP2010? When setting up the workflow.
SP 2013 workflow will only send emails to valid members of the organization
Wanted to confirm the limitations of the platform.
I guess we should just setup a FLOW (Power Automate) to trigger when the item is modified and build in the logic in that platform?.
Kind Regards,
Paul