Using the instructions and Formula language outlined in this tip, you can create multiple attachment fields in a Web form -- e.g., Requester and Approver. I've tested and implemented this technique and found it to be 100% stable.
- Create a File upload file.
- Create a computed field to store the attachment's file name. Name it "Attach1".
- Create a hotspot button labeled "Attach" with these @formulas:
@Command([FileSave]);
attach:= @AttachmentNames;
FIELD Attach1:= @Unique(Attach1 :
attach[@Elements(attach)]);
@Command([FileSave]);
- Create another hotspot button labeled "Detach" with this @formula:
@Command([FileSave]);
- Create a computed text with this formulas:
"<br/><input type= "checkbox" name="%%Detach"
value="" + Attach1 + ""><a href="/" +
@WebDbName + "/0/" + @Text(@DocumentUniqueID)
+ "/$FILE/" + Attach1 + "?OpenElement" Target="_new">" +
Attach1 + "</a>"
You're all done and ready to test the code!
If you need to have more attachment fields repeat steps 2 through 5 (step 1 is optional), and rename the field named "Attach1" to a different name in all the field names and formulas.
That's all you have to do. It's easy, reliable and efficient. (Of course, you should consider your server resources and attachment size.)
Do you have comments on this tip? Let us know.
Related information from SearchDomino.com:
FAQ: Formula language advice for Notes/Domino
Learning Guide: Formula language
Reference Center: Formula language tips and resources
This tip was submitted to the SearchDomino.com tip library by member Tan Seng Chye. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.