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
salesforce@14salesforce@14 

How to display Hover Link for related list in Custom Visual force page.

Hi All,

Can anyone send me the source code for this requirement.

Thanks in advance
Marek Kosar_Marek Kosar_
Hello,

could you specify your question (especially `hover link`)?
Do you mean, something like this ->
 
<apex:page standardController="Account">
    <apex:pageBlock title="{!account.Name} contacts:">
        <apex:pageBlockTable value="{!account.Contacts}" var="item">
            <apex:column>
                <apex:outputLink value="/{!item.Id}">
                     {!item.name}
                </apex:outputLink>
            </apex:column>
        </apex:pageBlockTable> 
    </apex:pageBlock> 
</apex:page>
?

Marek
 
pranab khatuapranab khatua
<apex:page StandardController="Account"  recordSetVar="Acct">
     <apex:form > 
    <apex:pageBlock >
    <apex:pageBlockTable value="{!Acct}" var="a">
        <apex:column>
              <apex:facet name="header">Name</apex:facet>
              <a href="/{!a.id}" >{!a.name} </a>
        </apex:column>
        <apex:column value="{!a.industry}" />   
        <apex:column value="{!a.phone}" />
        <apex:column value="{!a.type}" />
        <apex:column value="{!a.fax}" />
        <apex:column >
           
        </apex:column>    
    </apex:pageBlockTable>
    </apex:pageBlock>
    </apex:form>
    
</apex:page>
salesforce@14salesforce@14
Hi guys,

                   I need like this 

User-added image

Please help me to do like this in Custom vf page.

Thanks in advance.
pranab khatuapranab khatua
Please chcek this link

https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_detail.htm
salesforce@14salesforce@14
Hi Pranab,

     Thanks for you reply.

Do you have any source code for it?

Thanks.