web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / How to use filter and ...
Power Apps
Answered

How to use filter and search in PCF for React

(0) ShareShare
ReportReport
Posted on by 63

Hi,

I want to use the filter and search function in my react app for a model driven powerapp with PCF.

The documentation describes not how to use it in javascript correctly. Has someone information about this?

Do I have to import some additional React components?

 

Here is a description of filtering but there is no example or full description on how to use it:

https://docs.microsoft.com/en-us/powerapps/developer/component-framework/reference/filtering

 

Best regards

I have the same question (0)
  • Verified answer
    ScottDurow Profile Picture
    1,039 on at

    There really isn't any difference using this in React or not - the setFilter accepts a FilterExpression https://docs.microsoft.com/en-us/powerapps/developer/component-framework/reference/filterexpression

     

    You can use as follows:

    const expression = {
     name: "account",
     from: "accountid",
     to: "parentcustomerid",
     linkType: "inner",
     alias: "parentaccount ",
    };
    
    _context.parameters.sampleDataset.linking.addLinkedEntity(expression);
    const condition = {
     attributeName: "accountid",
     conditionOperator: 79, // Equal or Under
     value: _context.page.entityId,
     entityAliasName: "parentaccount",
    };
    const conditionArray = [];
    conditionArray.push(condition);
    _context.parameters.sampleDataset.filtering.setFilter({
     conditions: conditionArray,
     filterOperator: 1, // Or
    });
    _context.parameters.sampleDataset.refresh();

    Hope this helps

  • fs92 Profile Picture
    63 on at
    Thanks for your reply.
    Is there another documentation or guides on how to use filters and conditions? The documentation on the PCF site isn’t good currently
  • ScottDurow Profile Picture
    1,039 on at
    I believe that more documentation is in the works!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 339 Most Valuable Professional

#2
11manish Profile Picture

11manish 180

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 88 Super User 2026 Season 1

Last 30 days Overall leaderboard