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
matsydoodlesmatsydoodles 

Show Individual Chatter Post using Visualforce

Hi,

I have a visualforce page which shows various information depending on the ID given through the URL.

I would like to show a single chatter post related to the information on the page.

 

I've looked at using the command:

<chatter:feed ........>

 

However that seems to be only able to show a whole feed.

 

Is there any built-in functionality to do what I want? Or am I going to have to use the chatter api?

Navatar_DbSupNavatar_DbSup

Hi,
You can pass the value from controller also. Try the below code as reference:
<apex:page >
<chatter:feed entityId="00190000008ul4h"/>
</apex:page>
Please go through the link below
http://wiki.developerforce.com/page/An_Introduction_to_Salesforce_Chatter

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.