function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
gopikrishnagopikrishna 

How to display multiple standard object with list views

Hi all,

 

          how to display list view with multiple standard objects in visual force page. 

 

I display only contact list views, but want display more than one standard object 

 

 

List Name List id

New This Week00B9000000464v7EAA
New Last Week00B9000000464vIEAQ
Platinum and Gold SLA Customers00B9000000464vZEAQ
Recently Viewed Accounts00B9000000464vhEAA
All Accounts00B9000000464viEAA
My Accounts00B9000000464vqEAA

 

so how to display multiple standard object list views 

 

my visual force page:

  

<apex:page standardController="contact" recordSetVar="contact" extensions="aaa">
<apex:pageBlock title="Account Lists">
<apex:form id="theForm">
<apex:pageBlockSection >
<apex:outputpanel >
<table class="list">

<tr>
<th >List Name</th>
<th>List id</th>
</tr>

<apex:repeat value="{!listviewoptions}" var="li">
<tr>
<td > <apex:outputText value="{!li.label}"></apex:outputText></td>
<td ><apex:outputText value="{!li.value}"></apex:outputText></td>
</tr>
</apex:repeat>

</table>
</apex:outputpanel>
</apex:pageBlockSection>
</apex:form> 
</apex:pageBlock>
</apex:page>

gopikrishnagopikrishna

Please Replay me this is possible or not ? This is urgent please.

 

 

Thanks in advance