Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,546 through 4,560 (of 4,711 total)
  • Author
    Posts
  • in reply to: DFFS 4.253 #7064
    Alexander Bautz
    Keymaster

      Hi,
      No, you should not. The reason you see it is because there is restrictions in SP2013 on how many “lookups” you can have in one query. I was convinced that this error should not show, but there may be another query that could trigger this error.

      Please give me some more details on SharePoint version, and what you do to get this error.

      Alexander

      in reply to: Form Password #7061
      Alexander Bautz
      Keymaster

        Yes, If you have edit access to the configuration list, you can edit the “blob” and simply remove the “pass” value so it ends up like this:

        "pass":""

        Alexander

        in reply to: DFFS 4.253 #7059
        Alexander Bautz
        Keymaster

          Sorry about that – it is now available.

          Alexander

          in reply to: "This Took Forever" – DispForm and EditForm #7054
          Alexander Bautz
          Keymaster

            Please test v4.253 and report any issues. I have not been able to recreate the error reported here, but hope I have been able to fix it anyways.

            Se complete change log here: https://spjsblog.com/dffs/dffs-change-log/

            Thank you for your patience,

            Alexander

            in reply to: "This Took Forever" – DispForm and EditForm #7049
            Alexander Bautz
            Keymaster

              I have done some work on the v4.25x version this weekend, and will be posting an updated version later today. I have removed a few bugs so I hope it will perform as expected.

              Alexander

              in reply to: "This Took Forever" – DispForm and EditForm #7032
              Alexander Bautz
              Keymaster

                Thank you for the feedback. Can you tell me how many fields of the following types you have in your form:

                1. People pickers
                2. Taxonomy fields / managed metadata

                Any other “complex” fields?

                Alexander

                in reply to: Hide SBS Vertical Label? #7029
                Alexander Bautz
                Keymaster

                  I did actually not think of this initially, but I’ll add support for this as soon as I have sorted the current bugs in v4.25x.

                  Alexander

                  in reply to: "This Took Forever" – DispForm and EditForm #7028
                  Alexander Bautz
                  Keymaster

                    I’m currently working to resolve these issues, but I have not been able to recreate the errors locally.

                    It would help if you could test this BETA, and the updated spjs-utility.js

                    Open the developer console (hit F12 > Console) and click on any error messages and posti the line where the error occurs here.

                    Also post the SharePoint version and which browser you use.

                    Alexander

                    in reply to: Use setFieldValue with Cascading dropdowns #7020
                    Alexander Bautz
                    Keymaster

                      Hi,
                      The problem is that the field is actually a single line of text field (but the input is hidden), and the script generates a dropdown in its place. This means that using “setFieldValue” will set the single line of text field because the script “knows” this field is of type single line of text. You must therefore add another line of code to find the select and set its value “manually”.

                      Alexander

                      in reply to: Export List Version History to Excel #7016
                      Alexander Bautz
                      Keymaster

                        Sorry, I have no such solution. You should look at for example ShareGate.

                        Alexander

                        in reply to: vLookup requires Tabular View #7015
                        Alexander Bautz
                        Keymaster

                          Hi,
                          Yes this is currently a requirement. I have somehow forgot to put this in the manual, but it is mentioned in this post: https://spjsblog.com/2012/02/12/list-view-preview-item-on-hover-sharepoint-2010/

                          No wonder you did not find it though. I’ll make a note so I remember to update the manual.

                          Alexander

                          in reply to: v4.250 backend updated? #7010
                          Alexander Bautz
                          Keymaster

                            You are right, I have updated the change log. Please note that I have fixed one bug in frontend v4.251.

                            Alexander

                            in reply to: Read Only Rule Drops % in Edit Form #6977
                            Alexander Bautz
                            Keymaster

                              Thank you for the feedback – this will be fixed in the upcoming release.

                              Alexander

                              in reply to: UserInfo and adding properties #6973
                              Alexander Bautz
                              Keymaster

                                I will add the ability to have the “customProp” as an array of FieldInternalNames in the next release of spjs-utility.js.

                                In the meantime, you can modify your current version by changing this:

                                if(customProp !== undefined){
                                	arrOfFields.push(customProp);
                                }

                                like this:

                                if(customProp !== undefined){
                                	if(spjs.$.isArray(customProp)){
                                		spjs.$.each(customProp,function(i,p){
                                			arrOfFields.push(p);
                                		});
                                	}else{
                                		arrOfFields.push(customProp);
                                	}
                                }

                                Alexander

                                in reply to: Auto Resize Multi line of text in DFSS #6972
                                Alexander Bautz
                                Keymaster

                                  Hi,
                                  I do not have a ready to use code example, but will keep this request in mind and see what I can do. I am however busy working on bringing the latest DFFS version out of BETA, so I cannot promise anything.

                                  Alexander

                                Viewing 15 posts - 4,546 through 4,560 (of 4,711 total)