Skip to content

Instantly share code, notes, and snippets.

@asmitakhare
Created September 25, 2020 21:27
Show Gist options
  • Save asmitakhare/3ac70fd38df2ae84a314b6d60624ebac to your computer and use it in GitHub Desktop.
Save asmitakhare/3ac70fd38df2ae84a314b6d60624ebac to your computer and use it in GitHub Desktop.
controller class
<apex:page Controller="CaseListClass">
<apex:pageBlock >
<apex:pageBlockTable value="{!cases}" var="c">
<apex:column value="{!c.Id}"/>
<apex:column value="{!c.Type}"/>
<apex:column value="{!c.CaseNumber}"/>
<apex:column value="{!c.Reason}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment