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
kpriya Aggarwalkpriya Aggarwal 

Hi, I want to show all org contacts by using List Controllers but it is not happened.Please help me on this.

Here is the code:
<apex:page standardController="Contact"  sidebar="false" recordSetVar="contacts" tabStyle="Contact">
    <apex:pageBlock>
        <apex:pageBlockTable value="{!contacts}" var="c">
            <apex:column value="{!c.Name}" HeaderValue="Name"/>
        </apex:pageBlockTable>
    </apex:pageBlock>
</apex:page>
sfdcMonkey.comsfdcMonkey.com
HI kpriya,
  above code is working fine and display all contacts name in my org : which issue you have facing with above code?

Thanks
Sanjay Bhati 95Sanjay Bhati 95
Hi  kpriya,
 your above code is working fine . There is no issue in that code . It may be some another issue.
Thanks