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 from standard object user fields?

Hi All,
I need to remove hyperlink for the created by fields.
User-added image
Below is the code, I did not mention any command link for this
<apex:column value="{!email.CreatedById}" headerValue=" Created By"/>

Kindly help me on this.
Regards,
Deepak
Best Answer chosen by sfdc G 9
Suraj TripathiSuraj Tripathi
Hi Deepak,

Please set CreatedBy.Name instead of CreatedById .
 
<apex:column value="{!email.CreatedBy.Name}" headerValue=" Created By"/>

Regard,
Suraj 

 

All Answers

Suraj TripathiSuraj Tripathi
Hi Deepak,

Please set CreatedBy.Name instead of CreatedById .
 
<apex:column value="{!email.CreatedBy.Name}" headerValue=" Created By"/>

Regard,
Suraj 

 
This was selected as the best answer
sfdc G 9sfdc G 9
Thank You So mush suraj,

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​