function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
vishal yadav 86vishal yadav 86 

Unable to Display in hyperlink Format.

Why the name is not displaying in hyperlink format.
Any erro rin the code? 

<apex:page sidebar="false" controller="accountsControler">
<apex:sectionheader title="List" subtitle="Contacts List">
<apex:form >
<apex:pageBlock title="List Of Contacts" >
<apex:pageBlockTable value="{!conlst}" var="con">
<apex:column value="{!con.name}"/>
<apex:column value="{!con.phone}"/>
<apex:outputLink value="/{!con.id}" target="_blank">
{!con.name}
</apex:outputLink>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:form>>
</apex:sectionheader>
</apex:page>
Best Answer chosen by vishal yadav 86
Rounak SharmaRounak Sharma
hello Vishal,
<apex:outputLink value="[your VF name]?id={!a.id}" id="eventlink">{!a.subject}</apex:outputLink>

Please let me know if it helps you in any way.
thanks

All Answers

Rounak SharmaRounak Sharma
hello Vishal,
<apex:outputLink value="[your VF name]?id={!a.id}" id="eventlink">{!a.subject}</apex:outputLink>

Please let me know if it helps you in any way.
thanks
This was selected as the best answer
vishal yadav 86vishal yadav 86
Thank You!!
Rounak SharmaRounak Sharma
hello Vishal,
Please mark it as the best answer so that others can also be benefitted and the thread will be closed also.
Thanks