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

How make Subject in Visualforce Page link to Activity Task Detail Page
I have a VF Page and I just want to link the subject to the related activity detail. What am I missing?
<apex:page standardController="Contact" extensions="ActivityHistoryOnContact" showHeader="true" sidebar="false" > <div style="overflow: scroll; height: 600px;"> <apex:pageBlock title="Activity History"> <apex:pageBlockSection > <apex:pageBlockTable value="{!ListTasks}" var="tsk" html-cid="actTable" style="width:1200px" > <apex:column style="width:500px" headerValue="Date" value="{!tsk.LastModifiedDate}" /> <apex:column style="width:900px" headerValue="Subject" value="{!tsk.Subject}" /> <a href="/{!tsk.Subject}" target="_blank">{!tsk.Subject}</a> <apex:column style="width:2500px" headerValue="Comments" value="{!tsk.Description}"/> </apex:pageBlockTable> </apex:pageBlockSection> </apex:pageBlock> </div> </apex:page>
Thanks.
All Answers
Thanks.
Let me know. Thanks
Thanks.