Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
<apex:page standardController="Account" recordSetVar="accounts" tabstyle="account" sidebar="false"> <apex:pageBlock > <apex:repeat value="{!accounts}" var="a"> <apex:pageBlockSection title="{!a.name}"></apex:pageBlockSection> <apex:relatedList list="Contacts" subject="{!a.Id}"/> <apex:relatedList list="Opportunities" subject="{!a.Id}" /> </apex:repeat> </apex:pageBlock> </apex:page>
<apex:page standardController="Contact" recordSetVar="Contacts"> <apex:pageBlock > <Table border="1"> <apex:repeat value="{!Contacts}" var="c"> <TR> <TD> <apex:outputText value="{!c.FirstName}"/> </TD> <TD> <apex:outputText value="{!c.LastName}"/> </TD> </TR> </apex:repeat> </Table> </apex:pageBlock> </apex:page>
vf controller?
http://www.jitendrazaa.com/blog/salesforce/listview-filter-in-apex-with-paging-and-navigation/
http://salesforce.stackexchange.com/questions/32067/custom-list-view-to-display-vf-page
Try below code. Other wise you can try below post for code.
http://www.jitendrazaa.com/blog/salesforce/listview-filter-in-apex-with-paging-and-navigation/
Please let us know if this will help you