Guest User

Untitled

a guest
Apr 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <!--
  2. #Visualforce Page : sendToHelloSign
  3. #DESCRIPTION : This visualforce page is used to Send Document for eSignature to the Contact
  4. #Author : Serge Kandukuri
  5. -->
  6. <apex:page controller="sendToHelloSignCtrl">
  7. <apex:form >
  8. <apex:pageblock >
  9. <apex:pageMessages ></apex:pageMessages>
  10. <apex:pageblockSection >
  11. <apex:pageblockSectionItem >
  12. <apex:outputLabel value="Select Contact"></apex:outputLabel>
  13. <apex:selectList value="{!strSelContact}" size="1">
  14. <apex:selectOptions value="{!ContactsWithParentAccount}"/>
  15. </apex:selectList>
  16. </apex:pageblockSectionItem>
  17. <apex:pageblockSectionItem >
  18. <apex:outputLabel value="File URL"></apex:outputLabel>
  19. <apex:inputText value="{!strFileURL}"/>
  20. </apex:pageblockSectionItem>
  21. </apex:pageblockSection>
  22. <apex:pageblockButtons >
  23. <apex:commandButton value="Send" action="{!sendHelloSignRequest}"/>
  24. </apex:pageblockButtons>
  25. </apex:pageblock>
  26. </apex:form>
  27. </apex:page>
Add Comment
Please, Sign In to add comment