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
CTU007CTU007 

showChatter="ture" requires title="true" to show chatter?

Hi, as per the component details on showChatter, it has nothing to do with title property:

 

But my page would not display chatter on my tabbed opportunity page:

 

 

<apex:page standardController="opportunity" showHeader="true">
   <apex:detail subject="{!Opportunity}" showChatter="true" relatedList="false" title="false"/> 
</apex:page>

 

Why is this? If I change to title="true" it can display chatter.

 

 

 

 

 

 
showChatterBoolean

A Boolean value that specifies whether to display the Chatter information and controls for the record.

If this is true, and showHeader on < apex:page > is false, then the layout looks exactly as if the < chatter:feedWithFollowers > is being used.

If this is true, and showHeader on < apex:page >

is true, then the layout looks like the regular Chatter UI.