Skip to content

Instantly share code, notes, and snippets.

@ykurnia
Created November 18, 2013 08:11
Show Gist options
  • Save ykurnia/7524374 to your computer and use it in GitHub Desktop.
Save ykurnia/7524374 to your computer and use it in GitHub Desktop.
Simple list of Lead with hyperlink to record
<apex:pageBlockTable var="items" value="{!listLead}" >
<apex:column headerValue="Lead">
<apex:outputLink title="Lead" value="/{!items.Id}">{!items.name}</apex:outputLink>
</apex:column>
<apex:column title="Company" value="{!items.Company}" />
<apex:column title="Phone" value="{!items.Phone}" />
<apex:column title="Email" value="{!items.Email}" />
</apex:pageblocktable>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment