Created
September 13, 2019 01:23
-
-
Save DataSolveProblems/09a72a4ad425f25ef84ca9dd872c70b3 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