답변 1개
Hi Joe,If you use standard controller for the case, then do like following <apex:outputLink value="/{!case.Id}" >Case</apex:outputLink>
If you loop through the cases using iterative component on the visualforce page, then do like following,
Change as per your requirements<apex:repeat value="{!casesList}" var="case">
<apex:outputLink value="/{!case.Id}" >Case</apex:repeat>
</apex:repeat>