Alexander Bautz

Forum Replies Created

Viewing 15 posts - 4,501 through 4,515 (of 4,555 total)
  • Author
    Posts
  • 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

    in reply to: Required Field Alignment Issue #6312
    Alexander Bautz
    Keymaster

    Hi,
    Sorry for the delay. I have no good explanation to this. Can you use the developer tools to “inspect” the required star to see if it is in the formlabel or the formbody table cell?

    Could it be some custom code or CSS you have added that does this?

    Alexander

    in reply to: Group Targeting #6311
    Alexander Bautz
    Keymaster

    I’ll look into this issue for the next release.

    Alexander

    in reply to: Use of [Today] in Rules #6310
    Alexander Bautz
    Keymaster

    Hi,
    I’m not sure this is possible, but you can use the jQueryUI datepicker like described here: https://spjsblog.com/forums/topic/jquery-ui-datepicker-widget-in-dffs/

    Alexander

    in reply to: getFieldValue on DispForm #6309
    Alexander Bautz
    Keymaster

    Yes, like this:

    var myDispFormValue = getFieldValue("MyFieldName",true); // true = dispform

    Alexander

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

    Hi,
    This file was actually not published – you find it here – this code example is for SP 2013 only!

    Please note that you must edit the file to change a few variables.

    Alexander

    in reply to: DFFS Change Log Order #6307
    Alexander Bautz
    Keymaster

    I agree, I’ll try to find time to reverse it.

    Alexander

Viewing 15 posts - 4,501 through 4,515 (of 4,555 total)