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
devfredevfre 

How to remove the link from the output field of the page block table in edit page?

Hi i'm having  the lookup field in the popup and when submitting the popup the value will get displayed in the page block table, which is the output field and it is coming as link in the table. how to remove that link?

Starz26Starz26

try outputText

devfredevfre

i cant use output field bcoz if we this , then we have to give like field__r.name, as that is the lookup field.  also i'm having this problem while creating new records, on that time we cant query for name. Pls suggest some other opt

Starz26Starz26

Well, add a styleClass="noLink" to the outputfield

 

then in the vf page add

 

<style>

.noLink, .noLink:hover
{
color:black;
text-decoration:none;
cursor:default
}

</style>

 

Add any additional css needed for the various events

 

You could also use Java to select the .noLink class and change the href to herf="#" so the link does not work.