Howdy all,
Haven't seen this question yet, but is it possible to change the look of the File Upload component's Placeholder, to add more visibility.
To Either Reflect This or
- Option 1:
Option 2:
This is the code snippet:
a!fileUploadField( label: "Attachments", labelPosition: "ABOVE", target: cons!FileLocation, value: local!attachment, placeholder: "", saveInto: { ri!Attachment.ID, local!attachment }, validations: {}, buttonStyle: "STANDARD"
Discussion posts and replies are publicly visible
KevinQP Try this code block.
{ a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextItem(text: "Attachments") } ), a!cardLayout( showBorder: false(), padding: "NONE", style: "#FFFFFF", contents: { a!fileUploadField( labelPosition: "COLLAPSED", label: "Attachments", placeholder: "", validations: {}, buttonStyle: "STANDARD" ) } ) }
Thank you so much this did it!