Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
It would be nice if you can add a new search operator that searches for all the words separately. Suppose a row contains a column with content "The quick brown fox jumps over the lazy dog":
| Search for | Functionality now (with search settings operator set to Contains) | Desired new functionality SplitWords |
| fox dog | returns nothing | return all rows containing both fox and dog (note: order of the words doesn't matter) |
| dog (with a space at the end) | returns nothing | return all rows containing dog |
| lazy dog | returns all rows containing "lazy dog" | return all rows containing both fox and dog (note: order of the words doesn't matter) |
| "lazy dog" | (including the double quotes): search returns nothing | return all rows containing the exact string lazy dog |