Hi Teams. I have an interesting behavior that hopefully you can help me with. I have a sharepoint list of applications with the owner as a people field. My canvas app has two filter headers, one the app name, the other a people picker. Using this filter method with a Text Input for the people filter:
ClearCollect(colGridData,Filter('Application List', StartsWith('Owner'.DisplayName, TextInputOwner.Text) && (IsBlank(AppNameSearch.Text) || IsEmpty(AppNameSearch.Text) || StartsWith('App Name',AppNameSearch.Text))));
The app filter does sort the gallery when clicking outside the input field - as expected.
The Owner text field, does not filter on clicking outside the search box - but does filter properly when triggering a button to Load Data.
I'm puzzled why one search box works when exiting (auto loading the data) and the other does not. Any thoughts? I'm definitely struggling with the people picker.