Forum Replies Created
-
AuthorPosts
-
Hi,
This is now in place in the latest version of vLookup: https://spjsblog.com/vlookup-for-sharepoint/vlookup-change-log/Let me know if you find any issues.
Alexander
April 28, 2015 at 11:15 in reply to: Calendar Control data change won't trigger function or "alert" message #7480Hi,
Are you 100% sure you use the latest DFFS frontend in this particular form? – if you hover over the “Enhanced with DFFS” text at the bottom of the form, does the correct version number show?Alexander
Hi,
It’s hard to tell what could be wrong. Have you verified that all the scripts are in place? – try using the developer tools to look for errors in the console (hit F12 > Console).Alexander
April 25, 2015 at 13:55 in reply to: Calendar Control data change won't trigger function or "alert" message #7471I have confirmed this bug, and have fixed it in v4.266 of DFFS frontend.
Please test it and let me know if it works as expected now.
Alexander
April 23, 2015 at 20:51 in reply to: Calendar Control data change won't trigger function or "alert" message #7465Hi,
I have a few questions:1: Which version of SharePoint are you using?
2: Are you using the stock date picker (and not jQueryUI)?
3: What trigger are you using in the rule in DFFS?Alexander
Hi,
Sorry, but vLookups does not “exist” in the parent list. The query is performed on the fly and there are no values stored.Your best bet is to create a chart directly targeting the child list.
Alexander
Hi,
Sorry for the late reply. This has to do with timing. The cascading dropdowns are created before the vLookup sets the field, and therefore the cascading dropdowns will not pick up this value.If you have configured the cascading dropdowns “manually” (not using DFFS) you can wrap the call to this function in this code:
function vLookupPresetFromUrlDone(fin){ if(fin === "TheFieldInternalNameOfTheFieldYouAreSetting"){ // put the cascading dropdown code here. } }
If you are using DFFS, try deferring DFFS (in the Misc tab) to try to let vLookup finish before it triggers.
Hope this helps,
AlexanderHi,
Sorry, but this will work without a rebuild as this solution is designed for a NewForm or EditForm.Unfortunately I do not have the time to do this, but if you want to have a go I can provide the un-minified code.
Alexander
Hi,
If you are using SP2007 or SP2010 you must update to v4.264 for DFFS frontend. This was released a few days ago, but I have not had time to document it.Basically this fixes exactly this issue.
Let me know if this helps,
AlexanderTo completely disable DFFS you will have to remove the web part, but to “clear” the configuration for a form, go to the configuration list and rename the “Title” of the list item something like this:
From
/lists/dffsdemo/newform.aspx
to
/lists/dffsdemo/newform.aspx_
This means DFFS will not find the configuration.
Hope this helps,
AlexanderHi,
Ensure you have all the scripts referred correctly in the CEWP. You can try the link in the src attribute in the address bar of your browser to see if you find it (please note that you may get error messages form the files – this is just to verify that the link is correct).Also you can open the developer tools (hit F12 > Console) and look for errors there.
Hope this helps,
AlexanderHi,
Take a look at the latest version of the cascading dropdown solution: https://spjsblog.com/2015/04/15/cascading-dropdowns-now-supports-multi-choice/Let me know how it works out.
Alexander
Hi,
Sorry for the delay. The setup you have tried will unfortunately not work. I have made a change to the cascading dropdown plugin to support multichoice, and will try to find time to publish this during the weekend.Best regards,
AlexanderUnfortunately this is correct. There is no way DFFS can “see” the users in the AD group.
Alexander
Hi,
The only way I can think of is to add this code to the master page of the site – put it at the BOTTOM, right before the closing </body> tag:<script type="text/javascript"> if(location.pathname.toLowerCase() === "/_layouts/upload.aspx"){ if(GetUrlKeyValue("List").toLowerCase() === "4c886136-1a92-4e8f-bf80-17880df177ab"){ // Change GUID to match your library document.getElementById("ctl00_PlaceHolderMain_ctl01_ctl05_UploadMultipleLink").style.display = "none"; } } </script>
Change the path “/_layouts/upload.aspx” to include any subsites – like “/sites/mysite/_layouts/upload.aspx”, (note that the url is in lower case letters) and change the GUID to the library. You may also want to check that the ID of the upload link is correct.
Hope this helps,
Alexander -
AuthorPosts