Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. <apex:form id="theOne">
  2. <apex:pageMessages />
  3. <apex:pageBlock >
  4. <apex:pageBlockButtons location="bottom">
  5. <apex:commandButton value="Submit" action="{!Save}" rerender="theOne"/>
  6. </apex:pageBlockButtons>
  7. <apex:pageblocksection >
  8. <apex:pageblockSectionItem >
  9. <apex:outputLabel value="Name :"/>
  10. <apex:inputField value="{!event.Name__c}"/>
  11. </apex:pageblockSectionItem>
  12. <apex:outputLabel />
  13. <apex:pageblockSectionItem >
  14. <apex:outputLabel value="Business Name :"/>
  15. <apex:inputField value="{!event.Business_Name__c}"/>
  16. </apex:pageblockSectionItem>
  17. <apex:outputLabel />
  18. <apex:pageblockSectionItem >
  19. <apex:outputLabel value="Telephone Number :"/>
  20. <apex:inputField value="{!event.Telephone_Number__c}"/>
  21. </apex:pageblockSectionItem>
  22. <apex:outputLabel />
  23. <apex:pageblockSectionItem >
  24. <apex:outputLabel value="Email Id :"/>
  25. <apex:inputField value="{!event.Email_Id__c}"/>
  26. </apex:pageblockSectionItem>
  27. <apex:outputLabel />
  28. <apex:pageblockSectionItem >
  29. <apex:outputLabel value="Reason For The Call :"/>
  30. <apex:inputField value="{!event.Reason_For_The_Call__c}"/>
  31. </apex:pageblockSectionItem>
  32. <apex:outputLabel />
  33. <apex:pageblockSectionItem id="pbsectionitem">
  34. <apex:outputLabel value="Select Date:"/>
  35. <apex:inputField value="{!event.ActivityDate}"/>
  36. </apex:pageblockSectionItem>
  37. <div id="datepicker" />
  38. <apex:pageblockSectionItem >
  39. <apex:outputLabel value="Time Slot :"/>
  40. <apex:inputField value="{!event.Time_Slot__c}"/>
  41. </apex:pageblockSectionItem>
  42. <apex:outputLabel />
  43. <apex:pageblockSectionItem >
  44. <apex:outputLabel value="Notes & Comments :"/>
  45. <apex:inputfield value="{!event.Description}"/>
  46. </apex:pageblockSectionItem>
  47. </apex:pageblocksection>
  48. </apex:pageBlock>
  49. </apex:form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement