Combine search fields #5878
Closed
ahmeddedahi
started this conversation in
General
Replies: 1 comment
-
Hey @ahmeddedahi you can use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I hope this message finds you well. I've been working on enhancing our search functionality in our Supabase and Next.js application, specifically focusing on combining search across multiple fields simultaneously.
Currently, we have data structured in a way where items are represented in different languages, such as English, French, and Arabic. Each item has corresponding fields for each language, like name_en, name_fr, and name_ar.
Now, I'm aiming to implement a search feature that allows users to search by any of these fields seamlessly. For instance, if a user types "Kitchen," they should get results even if not the term matches with name_en or name_fr. Similarly, if they type "Appareils," they should also get relevant results.
const { tableProps , searchFormProps } = useTable({
});
Beta Was this translation helpful? Give feedback.
All reactions