You need to sign in to do that
Don't have an account?

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.
showChatter | Boolean |
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.
|