Created
September 25, 2020 21:27
-
-
Save asmitakhare/3ac70fd38df2ae84a314b6d60624ebac to your computer and use it in GitHub Desktop.
controller class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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