Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <apex:pageBlockSection title="Consumer" columns="1" collapsible="true">
  2. <apex:outputPanel >
  3. <apex:outputLabel value="Postcode" for="consumerPostcode"/><br/>
  4. <apex:inputText id="consumerPostcode" value="{!consumerPostcode}" /><br/>
  5. </apex:outputPanel>
  6. </apex:pageBlockSection>
  7. <apex:pageBlockSection title="Leads with same Postcode" columns="1" collapsible="true">
  8. <apex:outputPanel >
  9. <apex:outputLabel value="Leads" for="consumerLeads"/><br/>
  10. <apex:inputText label="Open Leads" value="{!selectedLead}" list="{!openLeads}"/>
  11. </apex:outputPanel>
  12. </apex:pageBlockSection>
  13. <apex:pageBlockSection title="Opportunities with same Postcode" columns="1" collapsible="true">
  14. <apex:outputPanel >
  15. <apex:outputLabel value="Opportunity" for="consumerOpportunities"/><br/>
  16. <apex:inputText label="Open Leads" value="{!selectedOpportunity}" list="{!openOpportunities}"/>
  17. </apex:outputPanel>
  18. </apex:pageBlockSection>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement