I am using a data view with a search field, I want to display all rows that contains the text being searched. What should be under my Filter field? "Column 1 == "search term" || Column2 =="search term"
works when I need the exact value. However, I want to replace == with contains or fuzzy search, how can I do that?
Thank you, the first part of the suggestion works well: column1.lowercase().contains(
only when I put a static string between quotes. On the other hand, I am not able to put a variable such as txtSearchInput.value or even {{txtSearchInput.value}}, any idea why?