Guest User

Untitled

a guest
Feb 22nd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <apex:page controller="DreamhouseProspects">
  2. <apex:pageBlock >
  3. <apex:sectionHeader title="Leads" subtitle="Home"/>
  4. <apex:form >
  5. <div style="text-align:center;">
  6. <apex:commandButton action="{!URLFOR($Action.Lead.New)}" value="New"/>
  7. </div>
  8. <apex:outputLabel value="Sort: " for="sortList" />
  9. <apex:selectList value="{! sortOrder}" size="1" id="sortList">
  10. <apex:selectOption itemvalue="LastName" />
  11. <apex:selectOption itemvalue="FirstName" />
  12. </apex:selectList>
  13. <apex:commandButton value="Sort Table" action="{!sortList}" reRender="leads_list"/>
  14. <apex:pageBlockTable value="{! leads }" var="ct" id="leads_list">
  15. <apex:column headerValue="First Name">
  16. <apex:outputLink value="/{! ct.Id}">{! ct.FirstName }</apex:outputLink>
  17. </apex:column>
  18. <apex:column value="{! ct.LastName }"/>
  19. <apex:column value="{! ct.Email }"/>
  20. <apex:column value="{! ct.Phone }"/>
  21. </apex:pageBlockTable>
  22. </apex:form>
  23. </apex:pageBlock>
  24. </apex:page>
Add Comment
Please, Sign In to add comment