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
Yogesh Malbhage 18Yogesh Malbhage 18 

How to apply Filter in forceChatter : feed component

We are developing a forum using forceChatter : feed component (embedded in custom lightning component) with code
$A.createComponent("forceChatter:feed", {"type": "record", "subjectId" : ''}, function(feed) {
            var feedContainer = component.find("feedContainer");
            console.log("Feed:"+feed);
            feedContainer.set("v.body", feed);
        });
We are providing a cistom picklist with different filter options to filter feed Items but how can we apply these filter in above component?
Please help ASAP.
 
Syed Insha Jawaid 2Syed Insha Jawaid 2
Hi Yogesh

Check out this link :
https://developer.salesforce.com/docs/component-library/bundle/forceChatter:feed/documentation

Cheers!!!!
Yogesh Malbhage 18Yogesh Malbhage 18
Hi,

Thanks for your reply but still I am not clear how can I Aply filter.