Skip to main content

Posts

Showing posts from September, 2014

Add Attachment and Create a Record on the Same Visualforce Page

This article explains how you can upload an attachment while creating a new record to any SObject using Visualforce. Salesforce.com desktop screenshot Salesforce1 mobile screenshots  ------------------------------------------------------------------------------------------------------------ Visualforce Page <apex:page controller="SafetyObservationExtensionController" > <apex:messages />     <apex:form id="theForm">         <apex:pageBlock title="New Safety Observation Form">             <apex:pageBlockButtons location="bottom">                 <apex:commandButton action="{!cancel}" value="Cancel"/>                 <apex:commandButton action="{!save}" value="Submit"/>             </apex:pageBlockButtons>             ...