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

有帮助吗?

解决方案

works like a charm:

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

其他提示

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

许可以下: CC-BY-SA归因
scroll top