Skip to main content
1 Antwort
  1. 10. Juni 2015, 18:29
    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,

    <apex:repeat value="{!casesList}" var="case">

    <apex:outputLink value="/{!case.Id}" >Case</apex:repeat>

    </apex:repeat>

    Change as per your requirements
0/9000