
have a combo box with the below in the Items property.
Filter(Office365Users.SearchUserV2({searchTerm:Trim(Self.SearchText),isSearchTermRequired:false}).value,AccountEnabled =true, !IsBlank(JobTitle))And DefaultSelectedItems property
Filter(
Office365Users.SearchUserV2(
{
searchTerm: Trim(Self.SearchText),
isSearchTermRequired: false
}
).value, DisplayName = ThisItem.Manager
)but when in editmode I can't search for other users it will automatically turn off and automatically select DefaultSelectedItems even though I have unselected items
How to fix it?
Thanks in advance