Pergunta

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}))

Foi útil?

Solução

works like a charm:

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

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top