• Javaid Hussain
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
<apex:page sidebar="false" showHeader="false" standardController="Account">
    <apex:pageBlock title="Registration">
    <apex:pageBlockSection title="Related Info" columns="1">
        <apex:outputField value="{!Account.Name}"/> 
    </apex:pageBlockSection> 
    <apex:pageBlockSection title="Related Info" columns="1">
        <apex:relatedList list="Cases"/>
    </apex:pageBlockSection>
    </apex:pageBlock>
</apex:page>
<apex:page sidebar="false" showHeader="false" standardController="Account">
    <apex:pageBlock title="Registration">
    <apex:pageBlockSection title="Related Info" columns="1">
        <apex:outputField value="{!Account.Name}"/> 
    </apex:pageBlockSection> 
    <apex:pageBlockSection title="Related Info" columns="1">
        <apex:relatedList list="Cases"/>
    </apex:pageBlockSection>
    </apex:pageBlock>
</apex:page>