Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Any way to send some data to custom filter component? #1322

Open
shreyshahh opened this issue Aug 26, 2022 · 0 comments
Open

Any way to send some data to custom filter component? #1322

shreyshahh opened this issue Aug 26, 2022 · 0 comments

Comments

@shreyshahh
Copy link

Hi, I want to send some data to my custom filter component. Based on that data I want to apply some dynamic logic. Following is my working code for loading custom components in the filter.

{
               filter: {
                  type: 'custom',
                  component: CustomComponent,
                },
                filterFunction: (value, query) => {
                  if (value.includes(query)) {
                    return true;
                  } else {
                    return false;
                  }
                },
}

Now I want to send some data to my CustomComponent. Any way I can do that? Thanks in advance.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant