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
Saikishore Reddy AengareddySaikishore Reddy Aengareddy 

hovers not visible using detail tag

We are using a visualforce page where we would be presenting leads to our users based on the skill sets on the products that they have knowledge about. User will be presented this page soon after they click on visualforce tab and they will have options like "Retrieve Lead" initially but soon after clicking it the appropriate lead would be presented and the respective hovers are visible. Here they will have few more options like "Release Lead" and "Release and Retrieve Lead" buttons where they can release or release and retrieve a new lead but here hovers are not visible... here is our complete code...

 

<apex:page standardcontroller="Lead" extensions="ICG_LeadOwnershipProcessor" action="{!leadOwnershipFlowController}" cache="true">

<apex:variable var="lead" value="{!currentLeadAssigned}" />
<apex:variable var="assignedActivity" value="{!currentTimerActivity}" />
<apex:form >


<apex:pageBlock title="Lead Manager" tabStyle="Lead" id="sectionPageBlock">
<apex:pageBlockSection columns="2" rendered="{!IF(lead.id!=null&&lead.name!=null,true,false)}" title="Assigned Lead">
<apex:pageBlockSectionItem dataStyle="width:20px;"><apex:outputLabel >Lead</apex:outputLabel>{!lead.Lead_Id__c}</apex:pageBlockSectionItem>
<!--
<apex:inputField value="{!assignedActivity.Call_Outcome__c}" required="true"/>
-->
<apex:pageBlockSectionItem >

<apex:outputLabel >Call Outcome</apex:outputLabel>

<apex:selectList value="{!Outcomes}" size="1"> <!-- required="true" -->
<apex:selectOptions value="{!CallOutcome}"></apex:selectOptions>
</apex:selectList>
</apex:pageBlockSectionItem>

</apex:pageBlockSection>
<apex:pageBlockSection columns="3" rendered="{!IF(lead.id!=null&&lead.name==null,true,false)}" title="Released Lead">
<apex:outputField value="{!lead.name}" rendered="{!IF(lead.name==null,false,true)}"/>
<apex:pageBlockSectionItem rendered="{!IF(lead.name==null,false,true)}"><apex:outputLabel >Owner</apex:outputLabel><apex:outputField value="{!lead.owner.name}"/></apex:pageBlockSectionItem>
<apex:pageBlockSectionItem ><apex:outputLabel >Lead</apex:outputLabel><apex:outputLink value="/{!lead.id}">{!lead.id}</apex:outputLink></apex:pageBlockSectionItem>
</apex:pageBlockSection>
<apex:pageBlockSection rendered="{!IF(lead.id==null,true,false)}" title="Assigned Lead">You have no leads assigned to you.</apex:pageBlockSection>
<apex:pageBlockSection title="Messages" columns="1"><apex:messages rendered="true" id="messages"/></apex:pageBlockSection>
<apex:pageBlockButtons location="bottom">
<apex:commandLink value="Retrieve New Lead" id="retrieve" action="{!leadOwnershipFlowController}" styleClass="btn" style="padding:2px 5px 2px 5px; text-decoration:none;" rendered="{!IF(lead.name!=null,false,true)}" status="checkStatus" rerender="sectionPageBlock,detailPage,nameValue" onclick="this.disabled=true"><apex:param name="command" value="Retrieve" assignTo="{!command}"/></apex:commandLink>
<apex:commandLink value="Release Lead" action="{!leadOwnershipFlowController}" styleClass="btn" style="padding:2px 5px 2px 5px; text-decoration:none;" rendered="{!IF(lead.name==null,false,true)}" status="checkStatus" rerender="sectionPageBlock,detailPage" onclick="this.disabled=true"><apex:param name="command" value="Release" assignTo="{!command}"/></apex:commandLink>
<apex:commandLink value="Release & Retrieve New Lead" action="{!leadOwnershipFlowController}" styleClass="btn" style="padding:2px 5px 2px 5px; text-decoration:none;" rendered="{!IF(lead.name==null,false,true)}" status="checkStatus" rerender="sectionPageBlock,detailPage,nameValue" onclick="this.disabled=true"><apex:param name="command" value="releaseAndRetrieve" assignTo="{!command}"/></apex:commandLink>
<apex:commandLink value="Convert" action="{!leadOwnershipFlowController}" styleClass="btn" style="padding:2px 5px 2px 5px; text-decoration:none;" rendered="{!IF(lead.name==null,false,true)}" status="checkStatus" rerender="sectionPageBlock" onclick="this.disabled=true"><apex:param name="command" value="convert" assignTo="{!command}"/></apex:commandLink>
</apex:pageBlockButtons>
</apex:pageBlock>
<apex:outputPanel id="actionStatus" layout="block" style="text-align:center;font-family:Georgia;font-size:125%;">
<apex:actionStatus layout="block" id="checkStatus" startStyle="background-color:#ddffff;width:150px;height:25px;text-align:center;margin-left:500px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;vertical-align:middle;"
startText="Processing Request..."
stopText="" />
</apex:outputPanel>
<apex:outputPanel id="detailPage">
<apex:detail subject="{!currentLeadAssigned}" relatedList="true" rendered="{!IF(currentLeadAssigned.id!=null,true,false)}" inlineEdit="true"/>
</apex:outputPanel>
</apex:form>


</apex:page>