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
jeremyyjeremyy 

Hover links disappear w/ apex:detail and inlineEdit=true

The apex:detail element seems to have a bug. If you do an inline edit and save, the hover links disappear. By hover links, I mean the links right above the row of buttons on the detail page.

 

A simple test case is to override your Account view with this page:

 

 

<apex:page standardController="Account">
<apex:form >
    <apex:detail subject="{!account.Id}" relatedList="true" inlineEdit="true" relatedListHover="true" 
        showChatter="true" title="true" />
</apex:form>
</apex:page>

I've tested on Chrome and Firefox and this happens in both. Anyone else having this problem? Is this a known bug?

 

jeremyyjeremyy

Salesforce Support acknowledged that this is a known bug. No ETA.