Hi All,
My gallery search is working fine without any issues. However i want to change the search behaviour.
Search results should only be shown when user clicks on search icon. Currently search results are being shown once i type in keywords inside searchbox. May i know how to change this behaviour?
Below is the searchbox and code of Items Property of the Gallery

If(
myfavselected,
Filter(
Items,
ID in Filter(
Favorites,
Title = User().Email
).CatalogID
),
Filter(
Items,
(Len(TextInputCanvas1_3.Value) = 0 || TextInputCanvas1_3.Value in 'Item Name' || TextInputCanvas1_3.Value in Description || TextInputCanvas1_3.Value in Text('Unit Price(USD)') || TextInputCanvas1_3.Value in 'Item Category')||
(Len(TextInputCanvas1.Value) = 0 || TextInputCanvas1.Value in 'Item Name' || TextInputCanvas1.Value in Description || TextInputCanvas1.Value in Text('Unit Price(USD)') || TextInputCanvas1.Value in 'Item Category') &&
((CountRows(colSelectionGal) = 1 || 'Item Category' in colSelectionGal.Value)) &&
(IsBlank(ComboBox3.SelectedItems) || ("Under $50" in Concat(
ComboBox3.SelectedItems,
Value
) && Amount >= 1 && Amount < 50) Or ("$50 - $100" in Concat(
ComboBox3.SelectedItems,
Value
) && Amount >= 50 && Amount < 100) Or ("$100 - $200" in Concat(
ComboBox3.SelectedItems,
Value
) && Amount >= 100 && Amount < 200) Or ("Above $200" in Concat(
ComboBox3.SelectedItems,
Value
) && Amount >= 200))
)
)