문제

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 ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top