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
adam@schooldude.comadam@schooldude.com 

Keep Chatter Feed on objects using the Tabbed Accounts in 30 Seconds technique.

I've been testing using the techniques shown in this article (Tabbed Accounts in 30 Seconds) and I've had success getting it to work correctly.  However, I was wondering if there is a way to keep chatter across the top of the page.  If you override the view to show the tabs it takes the "show chatter feed option" off of the top of the page.

 

Thanks for any help!

fredkafredka

 

The following will expose the chatter at the top of the page

 

 

<apex:tab label="Details" name="AccDetails" id="tabdetails" styleclass="AcctListStyle">     
            <apex:detail relatedList="false" title="true" showChatter="true"/>
            <c:AccountHistoryComponentController AccountId="{!account.id}" /> 
        </apex:tab>   

 

 

adam@schooldude.comadam@schooldude.com

Thank you for the information!  This worked!  I'm fairly new to apex and was not aware of the "showchatter" option.  For any others that are new (and this was my duh! moment), make sure you have chatter feedtracking enabled on the object (custom objects are not set to on by default) or the showchatter option won't do any good.

 

Thanks again,

Adam