Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,456 through 4,470 (of 4,705 total)
  • Author
    Posts
  • in reply to: Manually set the location of the configuration list #7493
    Alexander Bautz
    Keymaster

      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

      Alexander Bautz
      Keymaster

        Hi,
        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

        in reply to: Comment Box issue post SharePoint 2013 Migration #7478
        Alexander Bautz
        Keymaster

          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

          Alexander Bautz
          Keymaster

            I 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

            Alexander Bautz
            Keymaster

              Hi,
              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

              in reply to: Use vLookup Count field in a Chart #7447
              Alexander Bautz
              Keymaster

                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

                in reply to: Prefill cascading drop down field #7446
                Alexander Bautz
                Keymaster

                  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,
                  Alexander

                  in reply to: Autocomplete filter list web part? #7442
                  Alexander Bautz
                  Keymaster

                    Hi,
                    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

                    in reply to: Current Logged in User trigger #7441
                    Alexander Bautz
                    Keymaster

                      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,
                      Alexander

                      in reply to: Temporarily disable DFFS?? #7438
                      Alexander Bautz
                      Keymaster

                        To 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,
                        Alexander

                        in reply to: Installing SPJS Charts #7430
                        Alexander Bautz
                        Keymaster

                          Hi,
                          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,
                          Alexander

                          in reply to: Cascading Dropdown plugin #7425
                          Alexander Bautz
                          Keymaster

                            Hi,
                            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

                            in reply to: Cascading Dropdown plugin #7400
                            Alexander Bautz
                            Keymaster

                              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,
                              Alexander

                              in reply to: AD Group Permissions #7399
                              Alexander Bautz
                              Keymaster

                                Unfortunately this is correct. There is no way DFFS can “see” the users in the AD group.

                                Alexander

                                in reply to: DocIcon for PDFs and upload multiple text #7397
                                Alexander Bautz
                                Keymaster

                                  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

                                Viewing 15 posts - 4,456 through 4,470 (of 4,705 total)