You need to sign in to do that
Don't have an account?

View Email on apex:detail Case Page
I have a visualforce page that I am using the <apex:detail> functionality on for the Case Object. Everything displays very nicely, including the list of any emails sent to/from the case. One problem, the Subject lines that are supposed to be linked to the actual email itself don't work. Here is an example of what one looks like:

When I click on that link it does absolutely nothing. When I hover over the link the following is displayed in the browser:
Can someone help me with this? I need our customers to have the ability to see the content of the emails associated with the case.
Thanks!!
When I click on that link it does absolutely nothing. When I hover over the link the following is displayed in the browser:
javascript:srcUp(%27%2Fss%2F02s190000004il2%3Fisdtp%3Dvw%27);Whatever this link is it does not point to the case email itself.
Can someone help me with this? I need our customers to have the ability to see the content of the emails associated with the case.
Thanks!!
<apex:page standardController="Case">
<apex:detail subject="{!case.id}" relatedList="true" title="false"/>
</apex:page>