Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,606 through 4,620 (of 4,636 total)
  • Author
    Posts
  • in reply to: Rule to match blank value #6254
    Alexander Bautz
    Keymaster

      The pipe will actually match the “two values” [blank] and [blank]

      You are supposed to leave the “This value” field empty to compare with “null” or “blank” – did you try that?

      Alexander

      in reply to: DispForm.aspx Field Names #6253
      Alexander Bautz
      Keymaster

        Hi,
        Use this in the Custom JS section in the Misc tab:

        $(spjs.dffs.fields["CaseStatus"]).find("h3").html("New status label");

        “CaseStatus” is the FieldInternalName of the field you want to change. Look at the bottom of the Misc tab for a reference table to find the proper FieldInternalName.

        Alexander

        in reply to: CSS to remove space between rows in Side by Side Fields #6248
        Alexander Bautz
        Keymaster

          Hi,
          This should remove the padding:

          td.ms-formlabel, td.ms-formbody{
          	padding-top:0px;
          	padding-bottom:0px;
          }

          Add this to the Custom CSS in the Misc tab.

          Alexander

          in reply to: Hide See Also on Task Item #6241
          Alexander Bautz
          Keymaster

            Hi,
            I guess you could hide it by adding this to the Custom CSS sections in the Misc tab:

            div.ms-recommendations-panel{
              display:none;
            }

            Alexander

            in reply to: Message on form #6240
            Alexander Bautz
            Keymaster

              Hi,
              I have seen this if I attach a master page to a “standalone” aspx file, and then load this aspx file using the content link option of a Content Editor Web part into a web part page. Could this be the issue?

              Take a look at the actual file (DFFS_frontend_CEWP.js.aspx) to see if this text has actually been added to the file.

              Alexander

              in reply to: Error when opening editform #6237
              Alexander Bautz
              Keymaster

                Hi,
                I did a quick test in a list by entering EditForm and changing the “ContentTypeId” to a blank string like this:

                .../Lists/Tasks/EditForm.aspx?ID=14&ContentTypeId=

                This gives me the “Sorry, something went wrong” message with “An unexpected error has occurred”.

                I don’t think this error has anything to do with DFFS, but it is a general error from SharePoint.

                I hope you can sort it out.

                Alexander

                in reply to: Is there a way to Categorize Attachments? #6223
                Alexander Bautz
                Keymaster

                  Hi,
                  Not with the built in attachments, but you could look into using vLookup to link to “attachments” from an other document library.

                  Using vLookup you can upload documents and tag them with your desired metadata.

                  Alexander

                  in reply to: Renaming columns #6222
                  Alexander Bautz
                  Keymaster

                    Hi,
                    First I have to ask why you do not rename them in the list settings?

                    Alexander

                    in reply to: Multi-Lines of Text Word Wrap #6221
                    Alexander Bautz
                    Keymaster

                      Hi,
                      You can try adding this to the custom CSS in the Misc tab:

                      div.ms-rtestate-write{
                      	max-width:400px;
                      	word-wrap: break-word;
                      }

                      The class “ms-rtestate-write” is from the enhanced rich text field in SP2013 – use the developer tools (hit F12) to inspect the textarea (or div) to find the correct identifier.

                      Alexander

                      in reply to: Adding table borders #6220
                      Alexander Bautz
                      Keymaster

                        Hi,
                        When using side-by-side the Field CSS tab cannot take you all the way. Skip setting the border CSS there, and go to the Misc tab and add this to the custom CSS:

                        #sbs_FieldTable_YourFieldNameHere{
                        border-left:2px red dashed;
                        }

                        “YourFieldNameHere” is the FieldInternalName of the field you want to target.

                        Alexander

                        in reply to: Headers and pre columns #6217
                        Alexander Bautz
                        Keymaster

                          Hi,
                          You can do it a bit easier like this:
                          Add the side-by-side fields, but do NOT check “Stretch side-by-side fields over both form columns” in the “Side-by-side” tab.

                          Add this custom js in the Misc tab:

                          $("#sbs_OuterTR_1").find("div.dffs_tdWrap:first").html("<h3 class='ms-standardheader'>Q1</h3>");
                          $("#sbs_OuterTR_2").find("div.dffs_tdWrap:first").html("<h3 class='ms-standardheader'>Q2</h3>");

                          The number in this string represents the side-by-side index used in the “Tabs” tab when setting up side-by-side: sbs_OuterTR_1

                          The attached image shows the labels.

                          Alexander

                          in reply to: New version 4 #6216
                          Alexander Bautz
                          Keymaster

                            The vLookup plugin cannot be used in NewForm. If you are editing DispForm or EditForm please let me have some more details regarding plugin version and any other relevant information.

                            Alexander

                            in reply to: Task List Options #6183
                            Alexander Bautz
                            Keymaster

                              Hi,
                              I’m glad you got it up and running.

                              1)
                              Use this code in the Custom JS in the Misc tab:

                              function hideApprovalBtn(){
                              	$("input[id$='DropDownChoice_Approved']").hide();
                              	$("input[id$='DropDownChoice_Rejected']").hide();
                              }
                              

                              Match this with a rule like in the attachment “RuleToHideTaskOutcome”.

                              2)
                              Add this to the Custom JS section in the Misc tab:

                              rlfiShowMore();
                              

                              3)
                              Are you using side-by-side? – if so, take a look at this topic: https://spjsblog.com/forums/topic/css-to-line-up-side-by-side-fields/#post-6170

                              Alexander

                              in reply to: Error when opening editform #6182
                              Alexander Bautz
                              Keymaster

                                There is no known problems like this. Is the form modified in SharePoint Designer?

                                How does the URL from the address bar look like when you experience this error – post the link her but change the domain name to “example.com” or something like this.

                                Alexander

                                in reply to: CSS to line up Side by Side Fields #6171
                                Alexander Bautz
                                Keymaster

                                  Hi,
                                  Try adding this to the Custom CSS section in the Misc tab:

                                  .sbs_FieldTable td.ms-formlabel{
                                  	width:150px !important;
                                  }
                                  .sbs_FieldTable td.ms-formbody{
                                  	width:350px !important;
                                  }

                                  This will affect all side-by-side fields. If you want to target a specific field, use the “Field CSS” tab in the backend configuration.

                                  Alexander

                                Viewing 15 posts - 4,606 through 4,620 (of 4,636 total)