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
sfdc G 9sfdc G 9 

How to remove hyperlink for From Address standard object user fields??

Is there any way to remove hyperlink for Frorm  Address?
User-added image
<apex:column value="{!email.FromAddress}" headerValue=" From Address"/>
Thanks in Advance,
Deepak
 
Best Answer chosen by sfdc G 9
Hemant_JainHemant_Jain
Can you try displaying the email address in this way?
 
<apex:column headervalue="From Address">
    <apex:outputText value="{!email.FromAddress}"/>
</apex:column>

Let me know if this works.

All Answers

Hemant_JainHemant_Jain
Can you try displaying the email address in this way?
 
<apex:column headervalue="From Address">
    <apex:outputText value="{!email.FromAddress}"/>
</apex:column>

Let me know if this works.
This was selected as the best answer
Suraj TripathiSuraj Tripathi

Hi Deepak ,

Below is the code. It is working fine in my Org.

<apex:column headerValue=" FromAddress">
   {! ct.FromAddress}
</apex:column>/>
Screenshot :
User-added image

Hope it Helps you. Please mark this as solved so that it gets removed from the unanswered queue which results in helping others who are encountering a similar issue.

Regards ,
Suraj