• Veni Korapaty
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
How to display multiple line toast messages? 
Can't the see record related to contacts using the below code. Can some one help what is the actual issue with my code

<apex:page standardController="contact" recordSetVar="conList">
   <apex:pageBlock title="Hello {!$User.FirstName}!">
  
   </apex:pageBlock>
   <apex:pageBlock title="Contacts">
      <apex:pageBlockTable value="{!conList}" var="con">
         <apex:column value="{!con.Name}"/>
         
      </apex:pageBlockTable>
   </apex:pageBlock>
</apex:page>

If i use the same code, but changing the standard controller name to account/opportunity working fine. Issue is with contact object
Can't the see record related to contacts using the below code. Can some one help what is the actual issue with my code

<apex:page standardController="contact" recordSetVar="conList">
   <apex:pageBlock title="Hello {!$User.FirstName}!">
  
   </apex:pageBlock>
   <apex:pageBlock title="Contacts">
      <apex:pageBlockTable value="{!conList}" var="con">
         <apex:column value="{!con.Name}"/>
         
      </apex:pageBlockTable>
   </apex:pageBlock>
</apex:page>

If i use the same code, but changing the standard controller name to account/opportunity working fine. Issue is with contact object