Reply
Contributor
tk.service
Posts: 8
0
Accepted Solution

EnhancedList: Chatter Follow Action

Hi,

 

We have a VF page with <apex:enhancedList type="Opportunity" /> implemented to display views selected.

 

Any idea why the Chatter Follow/Un-Follow button is missing from the Action column in the enhancedlist view?

Trusted Contributor
Magu
Posts: 209
0

Re: EnhancedList: Chatter Follow Action

<apex:page standardController="opportunity">
    <chatter:feed entityId="{!opportunity.id}"/>
    <apex:enhancedList type="opportunity"/>
</apex>

 

Regards,

Magulan D

Salesforce.com certified Force.com Developer.

SFDC Blog

SFDC Site

If this post is your solution, kindly mark this as the solution.

Contributor
tk.service
Posts: 8
0

Re: EnhancedList: Chatter Follow Action

[ Edited ]

Hi Magu, thanks for your answer.

 

it works with entityId="{!$User.Id}"

 

Thanks again.

 

However, it doesnt seem to work. 

 

entityId expects an ID for a record and in my case, I need all records in the list to each have Follow/Un-follow buttons in the Action column. Do you have any idea?