Forum Replies Created
-
AuthorPosts
-
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
Hi,
First I have to ask why you do not rename them in the list settings?Alexander
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
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
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
- This reply was modified 10 years, 3 months ago by Alexander Bautz.
Attachments:
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
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-6170Alexander
Attachments:
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
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
September 13, 2014 at 08:13 in reply to: list all attachments when clicking the paperclip in a list view updated version #6162Hi,
I have updated the code to escape the apostrophe – check if v1.71 fixes the problem.Alexander
I have removed the widget – you were not alone to experience this error.
Alexander
This issue is fixed in v4.100. Read the change log for details.
Alexander
Thank you for the feedback,
I have confirmed this bug. I will fix it and post the updated version during this weekend.Alexander
Hi,
I did a quick test using Chrome and it worked – which browser are you using?Alexander
This issue was resolved by making some changes to the DFFS_backend_min.js file. Please upgrade to v4.01.
Alexander
-
AuthorPosts