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
AndyuxAndyux 

Contact popup info

I created a VF page for a custom object with a field that is a lookup>contact. When I mouseover the contact on my VF page, it pops up a window with name and account name. How could I get contact.title to show there as well? Here is my current display code (its inline edit field):
<apex:outputField value="{!CustomObject__c.Contact1__c}" > 
  <apex:inlineEditSupport showOnEdit="saveButton, cancelButton" 
    hideOnEdit="editButton" event="ondblclick" 
    changedStyleClass="myBoldClass" resetFunction="resetInlineEdit"/>
</apex:outputField>
Here is a screenshot
https://drive.google.com/file/d/0B8JYtufLnux9bEJxUHNDWDFYQTA/view?usp=sharing


 
Best Answer chosen by Andyux
Vivek DVivek D
Go to your active contact page layouts. Click edit, on top you will see mini page layout which is actually displayed on hover. configure it add fields you want.  

All Answers

Vivek DVivek D
Go to your active contact page layouts. Click edit, on top you will see mini page layout which is actually displayed on hover. configure it add fields you want.  
This was selected as the best answer
AndyuxAndyux
Perfect thanks!