Skip to main content
Our users want to be able to open a case record from a visualforce page.  Currently, it just displays as an outputfield (not clickable).  How can I make the case field clickable to open the record?
5 respuestas
  1. 14 jun 2015, 07:54
    You can make that fied as a link using apex:outputLink as below.

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

        <apex:outputText value="{!DO ⌗ field}"/>

    </apex:outputLink>

    That should make that field as a link and clicking on that will navigate to the case record.
0/9000