Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,396 through 4,410 (of 4,756 total)
  • Author
    Posts
  • in reply to: New documents to a folder #8077
    Alexander Bautz
    Keymaster

      It is possible in SP2013 to specify the folder (not currently activated in vLookup), or you can browse to the correct folder in the upload dialog.

      It might be better to disable add new document, and use the link to the right of the folder name to open the folder in a new tab – and then use this to upload the documents the normal SharePoint way.

      Will this work?

      Alexander

      in reply to: Auto populated fields on Add New #8076
      Alexander Bautz
      Keymaster

        Hi,
        It seems I have a bug here that prevents this value to be picked up when setting the field as readonly in NewForm when the field you set is visible in the first tab.

        The value is set, but will not show in the readonly field before you navigate to another tab and back.

        I’ll fix this in the next release.

        Alexander

        in reply to: Unhide other WebParts on DispForm #8072
        Alexander Bautz
        Keymaster

          It’s hard to tell, but Is this web part visible if you move it to another placeholder in the page (or move it below the form)?

          There might be an issue with placing it right above the DFFS CEWP so you can try to add another CEWP in-between just to test.

          Alexander

          in reply to: Hide erros messages on DispForm #8068
          Alexander Bautz
          Keymaster

            Hi,
            I’m glad you figured it out. I’ll add a class to this error message to make it easier to address in the next release.

            Alexander

            in reply to: Hide erros messages on DispForm #8063
            Alexander Bautz
            Keymaster

              I’m not sure I understand – how is it you have hidden these fields?

              Alexander

              in reply to: Rule processing and reversing #8054
              Alexander Bautz
              Keymaster

                Thank you for the feedback – I’m glad it worked out.

                Best regards,
                Alexander

                in reply to: 5,000 Item limit #8053
                Alexander Bautz
                Keymaster

                  I’m glad it worked out!

                  Best regards,
                  Alexander

                  in reply to: 5,000 Item limit #8050
                  Alexander Bautz
                  Keymaster

                    Hi,
                    Regarding the double slash: Did you use a slash at the end of the “listBaseUrl” in the arguments to the function? – if so, remove this.

                    The other error might be the origin of the problem, and I suspect this has to do with jQuery being loaded more than once in the page. This causes the “filterNode” prototype function that is added by spjs-utility.js to be overwritten.

                    Please ensure you load jQuery only once and do another test.

                    Alexander

                    in reply to: Rule processing and reversing #8044
                    Alexander Bautz
                    Keymaster

                      Hi,
                      I forgot to tell that I have released a new version July 31: https://spjsblog.com/dffs/dffs-change-log/

                      Can you test this and let me know how it worked out?

                      Alexander

                      in reply to: Display a calculated column display value in edit form? #8043
                      Alexander Bautz
                      Keymaster

                        To get more fields back you can change the query like this:

                        var qRes = spjs.utility.getItemByID(
                        	{
                        		"listName":_spPageContextInfo.pageListId,
                        		"id":spjs.dffs.data.thisItemID,
                        		"viewFields":["Column1","Column2","Column3","Column4"]
                        	}
                        );
                        $("span.fullusername").html(qRes["Column1"].split(";#")[1]);
                        $("span.anotherSelector").html(qRes["Column2"].split(";#")[1]);

                        Alexander

                        Alexander Bautz
                        Keymaster

                          Hi,
                          I have never heard of this before so I cannot tell what is causing it. Have you verified that it is related to DFFS by deactivating the solution (removing the CEWP)?

                          If it is related – is the RTE a “enhanced rte” with the controls in the ribbon above the form, or the “old” type with the controls over the field itself?

                          DFFS does not support the old RTE editor in SP2013, so you would have to edit the list and change it to “Enhanced RTE”.

                          Alexander

                          in reply to: SharePoint 2013 Star Ratings #8028
                          Alexander Bautz
                          Keymaster

                            Hi,
                            DFFS supports the native star rating, but as in a stock form, this is only available in DispForm.

                            Alexander

                            Alexander Bautz
                            Keymaster

                              Hi,
                              The calculated column is not available in EditForm, so you need to use a query to get the value.

                              This is the HTML from the “Heading or HTML field”:

                              <h2>Profile Name: <span class="fullusername" /></h2>

                              I include it here because the quotes in your example is the wrong type because it is not wrapped in <code> tags

                              Then add this to the Custom JS textarea in the “CSS and JS” tab:

                              var qRes = spjs.utility.getItemByID(
                              	{
                              		"listName":_spPageContextInfo.pageListId,
                              		"id":spjs.dffs.data.thisItemID,
                              		"viewFields":["YourCalculatedColumn"]
                              	}
                              );
                              $("span.fullusername").html(qRes["YourCalculatedColumn"].split(";#")[1]);

                              Change “YourCalculatedColumn” to the FieldInternalName of your calculated column.

                              Alexander

                              in reply to: Password Recovery? #8023
                              Alexander Bautz
                              Keymaster

                                You can remove the password by locating the correct chart in the list “SPJS-ChartsForSharePoint_v4” (found in all site contents) and editing the “blob” and remove the “obfuscated” password so that is is only an empty string – like this:

                                "password":""

                                Alexander

                                in reply to: Table Style layout #8013
                                Alexander Bautz
                                Keymaster

                                  Hi,
                                  I’m sorry for not replying – I must have had a problem with the notifications from the forum as I had missed quite a few comments.

                                  I think you should be able to use the method described in this post: https://spjsblog.com/forums/topic/side-by-side-grid-view-of-readonly-values/

                                  Let me know how it works out.

                                  Alexander

                                Viewing 15 posts - 4,396 through 4,410 (of 4,756 total)