You need to sign in to do that
Don't have an account?
Remove blue hover over link from VF/PDF ouput
I am trying to remove the hover over link (in blue) and just display the output i.e. the name not the id
<tr> <td id="label"> Sales Rep </td> <td id="REP"> <apex:outputField value="{!Opportunity.OwnerId}"/> </td> </tr>
Using outputText displays the Id, which I don't want.
I'm wondering two options here
1. Some kind of inline style override - ???
2. Use workflow rule to copy the value
Any help, really appreciated.
We can use Owner Name field - <apex:outputField value="{!Account.Owner.Name}"/>
or the
You can use the style as below - but the link will still be there only the underline can go using this.
style=" text-decoration: none; "
let me know if this helps
Cheers!!
Sanjay
All Answers
We can use Owner Name field - <apex:outputField value="{!Account.Owner.Name}"/>
or the
You can use the style as below - but the link will still be there only the underline can go using this.
style=" text-decoration: none; "
let me know if this helps
Cheers!!
Sanjay
That works - thanks
Didn't think of join to name.
Hi
Could you help me to solve the same problem with you. Getting rid of the link and the underline.
I tried to change the style in <tr> tag, but nothing happened. :-(
It will be great if you could help me.
R