I have the following problem. In my app I have a Dropdown "StoreSelector" Items are based on an collection which are filtered depend on the User().Email. (Some User().Email, defined in an separat collection, can see all Stores, User().Email can only see one Store)
Store.Selector.Items:
If(IsBlank(LookUp(WebAppAdmin; AdminEMail = User().Email; AdminEMail));
Filter(ColStores; 'Store E-mail' = User().Email);
Search(ColStores; SearchField.Text; "C_x0026_S_x0020_Verkaufsstelle"))
The onChange-Property of "StoreSelector" filters an other Collection, lets call it "colTemp"
Basically this works fine.
As you can see in the formula above, additional I have TextField "SearchField". SearchField should allow to filter the dropdown. The Search()-funktion works fine, and the dropdown shows only the filtered result.
BUT, only if I click the dropdown the onChange-Event fires. And only if there are more than 1 item in the dropdown the click fires the event. Is there only 1 item, the click on this item doesn't fire the event.
What I have to do that onChange-Event fires if the user do an input in SearchField?