Question

I have a combobox in a powerapps form to select a user, works good. The filtering works as text is typed in, but initially it displays the full listing of users.

Is there a way to show nothing until text is actually typed in?

ComboBox.Items = Office365Users.SearchUser({searchTerm:PplPicker1.SearchText})

enter image description here

something like: If (Not (IsBlank( PplPicker1.SearchText)), Office365Users.SearchUser({searchTerm:PplPicker1.SearchText}))

Était-ce utile?

La solution

works like a charm:

If (PplPicker1.SearchText<>"", Office365Users.SearchUser({searchTerm:PplPicker1.SearchText}))

Autres conseils

For this you can use client side scripting(js). Some js libraries also available which can be used like chosen.jquery Chosen jquery plugin

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top