• re
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies

sending email based on stage in opportunity .on clicking save button it should check the status, and if status is closed won then the mail should go to the user.

  • June 14, 2010
  • Like
  • 0

button hiding using trigger

  • June 14, 2010
  • Like
  • 0

Hi all,

 

There is a peculiar problem that i m facing with file upload. There is an inputfile on my VF and whenever i refresh the page, the file value is getting lost. I want to retain the file uploaded even when the page is refershed.

 

code:

 

VF:

<apex:inputFile value="{!attachment.body}"/>

 

Apex Class:

public Attachment attachment{
    get {
      if (attachment== null){
        attachment= new Attachment();
         doclist.add(attachment);}
      return attachment;
    }
    set;
  
  }

 

Thanks,

Sandeep