-
Search Results
-
Topic: Set additional fields
I’m wishing to set an additional field related to the field selected in the lookup list. is this possible?
EG: On my form I have Client and Approver fields. In the client list I have Clients and their Coordinators. I want to select the client from the client list, but also set the approver to be the coordinator of that client at the same time.
Hi,
is there a way to create a print view without adding a new tab?
In my form I have multiple tabs, which is nice read and also edit but not when it comes to print out the whole item. Specially since some users don’t have permisions to see every tab. (I can’t go over the list view since the item has too many lookup fields, and they only want to print one item formatted as it is.)
In the Email and Print configuration I can configure to print the active tab, not all tabs available. Is there such an option already somwhere, or any easy way to achieve this?
Thanks
best regards,
NicoleTopic: SharePoint Online and DFFS
My current gig is a migration from SP2007 to SharePoint Online for a low-maturity organization. (They have only used SharePoint for document sharing in the past). They seem interested in learning how to build more advanced SharePoint solutions. I’d love to demo DFFS for them. Has anyone used/tested DFFS in SharePoint Online? Are there any known issues or limitations?
Note that MS is rollilng out a “Modern Document Library” experience in SPOnline that uses heavy Javascript development including React rather than dot net development. Apparently in “modern” doc libraries, there is no longer a display form for individual items.
The naming of some of the settings for a “modern” document library suggests to me that similar changes are going to be coming in future to lists also. Alex, have you seen any of the changes made in “modern” document libraries, and will DFFS be able to be adapted to these changes as they come forward?
Hi Alexander,
I use accordions in DFFS 4.365 (Cascading Dropdowns 3.5.27). On the first load of the DispForm the values of some fields get not displayed, on the second load they do.
First I associated the problem with the cascading dropdowns, but I reproduced the issue on a text field from the current list with a non-lookup value.
Do you have any hint for me?Thanks a lot and best regards
AglikaI can’t seem to figure out the correct argument for a date formula. I want to return list records where a date column equals Today-1 (yesterday). Any know how to do this?
Not a problem or question from me for a change – just a share of how we’ve implemented Alexander’s Hit Counter and Star Rating for SharePoint into a DFFS enabled list.
We were asked by a user to provide some stats on views of list items. In the past I’ve implemented the hit counter exactly as per the blog post, but having a DFFS enabled list I thought we could save some effort, and avoid having to deal with loading jquery and SPJS Utility more than once.
The hitcounter list is set up exactly as described in the blog post, and the HitCounterAndStarRatingForSharePoint.js file is stored in a convenient library.
We then added the hitcounter code to the custom JS area in DFFS backend;
$.ajax({
url: “/sites/StyleLibrary/HitCounterAndStarRatingForSharePoint/HitCounterAndStarRatingForSharePoint.js”,
dataType: “script”,
cache: true,
async: false,
});
var argObj = {counterListName:’HitCounter’,
counterListBaseUrl:’/sites/’,
countHits:true,
hitCounterVisible:true,
countOneHitPerUser:false,
countOneHitPerUserPerDay:false,
hitSuffix:[‘Hit’,’Hits’],
isDispForm:true,
activateRating:true,
starImageSrc:[‘/sites/stylelibrary/HitCounterAndStarRatingForSharePoint/star_off.gif’,
‘/sites/stylelibrary/HitCounterAndStarRatingForSharePoint/star_on.gif’,
‘/sites/stylelibrary/HitCounterAndStarRatingForSharePoint/star_selected.gif’],
starCount:5,
starMouseoverArr:[‘Very poor’,’Poor’,’Good’,’Very good’,’Fantastic’],
oneRatingPerUser:false,
ratingCountSuffix:[‘Vote’,’Votes’],
alreadyRatedMouseover:”You have already given this item {starCount} stars!”,
debug:false};
hitCounter(argObj);The code can probably be tidied up, but it logs hits nicely to the hitcounter list, and if you want the display of hits and ratings on the item you simply add
<span id=”hitAndLike”></span>
to the form in the location where you want it to appear.