Trap an attachment path via the Domino file upload control field

Trap an attachment path via the Domino file upload control field

Related information from SearchDomino.com:
Locating file upload controls

Can the file upload control be used in read mode?

JavaScript Reference Center

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

In some cases, such as to redirect attachments to a specific directory, you may want to trap the path of an uploaded attachment in your Notes/Domino environment. If so, use the Domino file upload control field and some HTML and JavaScript code. This tip gives you a few easy steps to trap an attachment, so that you can retrieve its path quickly and easily.
  1. Click on the file upload control field and go to "Properties." In the HTML tab, paste the following code into the "Others" field:
    onBlur="GetValue(this)"
    
  2. Create a text field and label it "Path." This is where you will store the path value that you receive from the file upload control field.
  3. In the form's JavaScript header, paste the following code:
    var uplpath ;   
    function GetValue(path)
    {
       uplpath = path;      
    document.forms[0].path.value = uplpath.value
    } 
    
  4. Finally, browse through the form and attach the file using the file upload control field. Notice that the path has been trapped in the previously crated "Path" text field.

Do you have comments on this tip? Let us know.

This tip was submitted to the SearchDomino.com tip library by member Gowri Balasundaram. 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.

This was first published in September 2008

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.