I’m new to the Power Apps forum and could use some help.
I have a single-select ComboBox that will not allow typing to narrow the search. The dropdown opens, but I cannot enter text in the search box.
What I have confirmed:
- DisplayMode = DisplayMode.Edit
- IsSearchable = true
- SelectMultiple = false
- SearchFields = ["Model"]
- Issue occurs even before using containers
- Happens with both custom filter logic and a simple Items source
Example Items logic:
With(
{ s: Lower(Trim(Self.SearchText)) },
Sort(
Filter(
colMaterials,
Len(s) < 2 ||
StartsWith(Lower(Text(Model)), s)
),
Model,
SortOrder.Ascending
)
)
Is there a known issue or setting that would prevent typing in a ComboBox search field, or is this related to the modern vs classic ComboBox behavior?