Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,651 through 4,665 (of 4,711 total)
  • Author
    Posts
  • in reply to: Header rows duplicating when click on tabs #6379
    Alexander Bautz
    Keymaster

      Hi,
      Yes, it’s your HTML. You cannot add a <tr> like this as it is not appended to the table directly, but added in a <td> within another <tr>.

      This means you end up with invalid HTML and the browser will try to fix it – resulting in this strange behavior.

      I’m not sure what you want to achieve here, but if you add an “empty” heading, this is what the HTML looks like:

      <tr id="heading_66" style="display: table-row; cursor: default;" fieldtype="dffs_heading"><td class="tabH1" colspan="2"><div></div></td></tr>

      where “66” is the heading ID I added in the “Unique ID” field for the heading.

      Alexander

      in reply to: Required Field CSS #6378
      Alexander Bautz
      Keymaster

        I will add a class to required fields when I fix a bug in setting fields not visible in the current tab to required (this produces multiple red stars).

        Alexander

        in reply to: Updating cascading dropdown list selection does not save #6377
        Alexander Bautz
        Keymaster

          Hi,
          This looks strange. I’m not sure, but it may be problems using this solution if you have “publishing features” turned on as adding a CEWP to such a page may result in strange behavior.

          Unfortunately I don’t have a solution to this on the top of my head.

          Alexander

          in reply to: Current user ID in Child List #6351
          Alexander Bautz
          Keymaster

            This is currently not possible, but I will try to get this in the next release.

            Alexander

            in reply to: Missing gradient.png #6348
            Alexander Bautz
            Keymaster

              Hi,
              The gradient.png file was used in the CSS file in v3 and is actually in the v4 CSS file as well, but I forgot to include this file in the v4 packeage.

              I am about to release an updated version of DFFS later tonight, and have decided to removed the file reference from the CSS file.

              Alexander

              in reply to: Group Targeting #6343
              Alexander Bautz
              Keymaster

                Hi,
                I have made some changes to the DFFS_backend.js file to use “GetGroupCollectionFromSite” instead of “GetGroupCollectionFromWeb”. This will pull all the user groups from the site collection and not only from the current web.

                I’m afraid you cannot have the DFFS_backend in another site collection as this will pull the wrong user groups.

                I will publish this updated version later this weekend.

                Alexander

                in reply to: Attachments #6342
                Alexander Bautz
                Keymaster

                  Hi,
                  I have fixed A and will get it published during the weekend.

                  Question B:
                  Have you tried the built in option to hide the save item button in the rules?

                  Alexander

                  in reply to: DFFS and vLookup Date Issue #6339
                  Alexander Bautz
                  Keymaster

                    I’m fairly sure this will be fixed in the next release (hopefully released soon).

                    Alexander

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

                      Hi,
                      After looking at it in your site I was able to recreate it. This is actually caused by the fact that the div (the textarea you write in) inherits from the side-by-side td where white-space:nowrap is configured.

                      To correct this, you must add this to the appropriate field(s) in the “Field CSS” in the DFFS backend:

                      div.ms-rtestate-write{
                      white-space:normal !important;
                      }

                      Let me know if this helps,
                      Alexander

                      in reply to: Frontend not working on subsites #6326
                      Alexander Bautz
                      Keymaster

                        Hi,
                        Which version of DFFS_backed.js are you using? – There was a bug in v4.0.

                        Alexander

                        in reply to: Tooltip Position Issue #6325
                        Alexander Bautz
                        Keymaster

                          I’m glad you figured it out. The code I posted was the original one and you have to adjust it to fit your setup.

                          Alexander

                          in reply to: Direct Backend Access #6324
                          Alexander Bautz
                          Keymaster

                            The dffs_configListBaseUrl is the relative URL to the site where the configuration list is located. Right click a page and view source – search for “webServerRelativeUrl” – this is the value you want to use (you must unescape “\u002f” to “/”).

                            Alexander

                            in reply to: Rules on Date Fields thowing an error #6323
                            Alexander Bautz
                            Keymaster

                              Hi,
                              This is already added to the upcoming release. I’m unfortunately running a bit late and will need a few more days to get it finished.

                              Alexander

                              in reply to: Tooltip Position Issue #6317
                              Alexander Bautz
                              Keymaster

                                Hi,
                                The scrolltop is calculated from s4-workspace. If this is not in the page scrolling will throw the tooltip out of position.

                                You can override the function by adding this to the bottom of the DFFS_frontend_CEWP.js.aspx file – below DFFS_frontend.js:

                                <script type="text/javascript">
                                	spjs.dffs.showTooltip = function(elm){
                                		var id = $(elm).attr('fin'), p = $(elm).position(), s = $(window).scrollTop();
                                		if($("#s4-workspace").length > 0){
                                			s = $("#s4-workspace").scrollTop();
                                		}
                                		p.top += s;
                                		$("#tooltipHolder").html('').attr("pin","0").css({"position":"absolute","left":p.left+25,"top":p.top+15});
                                		if(spjs.dffs.fields[id]!==undefined){						
                                			$("#tooltipHolder").appendTo($(elm).parent());
                                			$("#tooltipHolder").html("<div style='padding:3px;'>"+spjs.dffs.data.tooltipObj[id]+"</div>").css({"position":"absolute"}).stop(true,true).fadeIn(200);
                                		}
                                	}
                                
                                </script>

                                Alexander

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

                                  I cannot recreate this issue so its hard to tell why this is happening. You must try to tinker with the CSS to see if you get the text to wrap properly.

                                  Alexander

                                Viewing 15 posts - 4,651 through 4,665 (of 4,711 total)