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
gkappgkapp 

Chatter for VF Page

All our standard Salesforce pages have been overridden by VF pages, the issue is that for ex in accounts / contacts page which  are custom VF page we are not getting the chatter bar  (hence not able to follow accounts etc ) is there a way this can be enabled.

 

I was told this feature will be available in the next release , i still seem to have the same issue ? Are there any fixes for this

Best Answer chosen by Admin (Salesforce Developers) 
cloudcodercloudcoder

Winter 11 introduced a number of Visualforce components for working with Chatter. Check out the following blog post for more information: http://blog.sforce.com/sforce/2010/08/visualforce-components-for-salesforce-chatter-here-in-winter-11.html

 

Q

All Answers

cloudcodercloudcoder

Winter 11 introduced a number of Visualforce components for working with Chatter. Check out the following blog post for more information: http://blog.sforce.com/sforce/2010/08/visualforce-components-for-salesforce-chatter-here-in-winter-11.html

 

Q

This was selected as the best answer
gkappgkapp

Thanks for a fast answer , but i get the following error

 

"ErrorError: Unknown component chatter:feedWithFollowers"

cloudcodercloudcoder

Can you provide a bit more info? Paste the Visualforce page, let me know whether Chatter is enabled in your org, what version of Salesforce you are using etc.

 

Thanks

 

Q

gkappgkapp

We are using the " Salesforce.com Enterprise Web Services API Version 20.0", Yes chatter is enabled . The VF page is for contacts

Sample VF page

<apex:page standardController="Contact" extensions="RelatedCases">
    <style>
        .fewerMore { display: none;}
    </style>
    <apex:detail relatedList="true" relatedListHover="true">
        
    </apex:detail>
</apex:page>