@Amik , thanks for response.
I did try it out.
The user experince is bit differnt when using an additional Text Input. + we still have to click Drop down box to look at the search results and select. (+hiding away this additional text box after use)
However, I could find an alternate solution :
Items property of Combo Box (DataCardValue23_3):
Filter(
Office365Users.SearchUserV2(
{
searchTerm: Trim(Self.SearchText),
isSearchTermRequired: true
}
).value,
AccountEnabled = true
)
Critical is to set "isSearchTermRequired" as true.
and the Update property of DataCard to be :
{
Claims: "i:0#.f|membership|" & Lower(DataCardValue23_3.Selected.Mail),
DisplayName: DataCardValue23_3.Selected.DisplayName,
Email: DataCardValue23_3.Selected.Mail,
Department: DataCardValue23_3.Selected.Department,
JobTitle: DataCardValue23_3.Selected.JobTitle,
Picture: ""
}
It worked for now, dont know how efficient this is.
please let me know your thoughts.