-
Search Results
-
In a DFFS form i have a list of multi-choice items displayed using check boxes. These items are milestones for projects underway. There are 5 different responsible parties for the group of milestones.
I am trying to find a way to designate ownership by the responsible groups
My thought was to change the font color for each item in the multichoice list to correspond with each role, but haven’t been able to get that to work. Is that possible? option 1, i used highlightinjg instead of font color to see easier
if color coding isnt an option, any other way to designate or group the selections in the view? maybe space the items in the dropdown to align with roles. (option 2)
Hello, I have a SharePoint list that the New form has been customized with DFFS. In testing, some users see the customizations as expected but others do not see any of them, they do not even see the “enhanced with DFFS” stamp at the bottom of the form. Permissions to the site, list and form have been verified and both users who can see the customization and those who do not have the same permissions and are both using the same version of MS Edge as their browser. It feels like a caching issue on the users machine, however, having the user clear their cache and cookies did not resolve the issue.
Has anyone else encountered this or have any ideas what may be causing it?
I can’t seem to figure this out but I have an autocomplete that kicks off on a child form (vLookup). It’s using the rest filter and filtering based on a field populated to it via another child list but shares the same autogenerated ID as the parent list. For some reason, the autocomplete works perfectly when editing a child item. On new form, however, no data returns. Both edit and new are using the exact same ac setup.
Not sure it’s doing that or do I need to do the set up different between new and edit form.
Alex, I’m trying to pass a DateTime field (date PLUS time) using vLookup. The date is passing just fine, but the time is not. Here are the details:
1. I’m using vlookup on a custom list form to upload documents to a document library, so the dialog form that is opening is the edit form on the document library, since doc libraries do not have a new form.
2. I have a Start Date field on my SharePoint list where the action is initiated. It contains date and time. I have added a similar Start Date field to the document library and made sure to set it to accept date AND time.
3. In the vlookup settings, I am passing the value of Start Date field from the custom list to the Start Date field on the child document library.I have tried this using v 4.4.4.23 and v 4.4.5.27 of DFFS and it is not passing the time element of the Date Time field using either version of DFFS.
I have a form with a filed “SecondaryCategory”. I would like the form to redirect a user to another list, let’s call it “VQ”, when the Secondary category is a specific value.
Topic: Hiding Empty Web Parts
Here’s some code that will completely hide empty web parts in classic web part or wiki pages.
- Right click and inspect “There are no items to view…” Find the web part IDs that you wish to hide when empty.
- Add a CEWP with this script, changing the web part IDs:
<script language="JavaScript"> var pageIsInEditMode = false; if (typeof MSOWebPartPageFormName !== "undefined") { if (document.forms[MSOWebPartPageFormName]._wikiPageMode !== undefined && document.forms[MSOWebPartPageFormName]._wikiPageMode.value !== "") { pageIsInEditMode = true; } if (document.forms[MSOWebPartPageFormName].MSOLayout_InDesignMode !== undefined && document.forms[MSOWebPartPageFormName].MSOLayout_InDesignMode.value === "1") { pageIsInEditMode = true; } } if(pageIsInEditMode){ // Is in edit mode }else{ // Not in edit mode if ($("#empty-WPQ12").length){ document.getElementById("MSOZoneCell_WebPartWPQ12").style.display = "none"; } if ($("#empty-WPQ10").length){ document.getElementById("MSOZoneCell_WebPartWPQ10").style.display = "none"; } } </script>
One thing to note is that sometimes the web part IDs seem to change if you add or delete parts so make sure you pay attention if this occurs.
Bonus: If you just want to hide the “There are no items to view…” text and also tighten up empty web parts, use this script:
<style type="text/css"> .ms-list-emptyText-compact {display: none;} </style>
Topic: How to handle back button?
Hello,
I have set up dffs form for SharePoint online list,
So my problem is when user edit any existing item via dffs form and save the items with values, now again if he presses the back button from the browser, some values are changed and goes to different fields.
How can I handle this?