Created
September 12, 2019 17:57
-
-
Save DataSolveProblems/5e043508cf557104d24ef107af744946 to your computer and use it in GitHub Desktop.
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="NewCaseListController" > | |
<apex:pageBlock title="New Cases List" id="cases_list"> | |
<li> | |
<apex:repeat value="{!NewCases}" var="Case" rendered="true" > | |
<p><apex:outputLink value="/{!Case.ID}">{!Case.CaseNumber}</apex:outputLink></p> | |
</apex:repeat> | |
</li> | |
</apex:pageBlock> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment