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

Chatter in Visualforce page
Hi folks,
Can anyone tell me how to add the comments in chatter using VFP?
I wanna add the comments and edit the comments in visualforce .
Please help!
Can anyone tell me how to add the comments in chatter using VFP?
I wanna add the comments and edit the comments in visualforce .
Please help!
URL pass the contact ID:
https://c.ap1.visual.force.com/apex/chatter?id=XXX
VF code:
<apex:page standardController="Contact" >
<chatter:feed entityId="{!contact.id}" feedItemType="TextPost" showpublisher="True"></chatter:feed>
</apex:page>
Hope this helps!