Alexander Bautz

Forum Replies Created

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

    Alexander Bautz
    Keymaster

    Hi,
    I have updated the code to escape the apostrophe – check if v1.71 fixes the problem.

    Alexander

    in reply to: Log in widget not functioning #6159
    Alexander Bautz
    Keymaster

    I have removed the widget – you were not alone to experience this error.

    Alexander

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

    This issue is fixed in v4.100. Read the change log for details.

    Alexander

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

    Thank you for the feedback,
    I have confirmed this bug. I will fix it and post the updated version during this weekend.

    Alexander

    in reply to: Log in widget not functioning #6135
    Alexander Bautz
    Keymaster

    Hi,
    I did a quick test using Chrome and it worked – which browser are you using?

    Alexander

    in reply to: New Form settings #6128
    Alexander Bautz
    Keymaster

    This issue was resolved by making some changes to the DFFS_backend_min.js file. Please upgrade to v4.01.

    Alexander

Viewing 15 posts - 4,531 through 4,545 (of 4,555 total)