I'm working on a Radzen application that uses an Autocomplete component. I'm looking for guidance on how to implement a feature where the dropdown should contain items that match all the tokens entered by the user.
Here's what I'm trying to achieve:
-
User Input: Users can input multiple filter criteria separated by a delimiter (e.g., comma).
-
Tokenization: The input text is tokenized based on the delimiter to extract individual filter criteria.
-
Dropdown Filter: The Autocomplete dropdown should display items that match all of the tokens entered by the user, not just any single token.
For example, if a user enters "apple, banana," I want the dropdown to suggest items that contain both "apple" and "banana."
I've reviewed the Radzen documentation, but I couldn't find specific guidance on how to implement this particular tokenized filtering behavior in the Autocomplete component. Can anyone provide insights or an example of how to achieve this?
Any help or pointers would be greatly appreciated. Thanks!