Click into the input again => the dropdown hides (correct).
Click into the input again => the dropdown should reopen, but does not.
The dropdown probably gets "destroyed" on hidden after click 3.
There is no onfocus event on the last click (4) which would reinstantiate and open the dropdown.
We might consider leaving the dropdown instantiated on 3 (when MinimumLenght="0") or we have to detect "click into focused input" to reinstantiate it again.
The dropdown probably gets "destroyed" on
hidden
after click 3. There is noonfocus
event on the last click (4) which would reinstantiate and open the dropdown.We might consider leaving the dropdown instantiated on 3 (when MinimumLenght="0") or we have to detect "click into focused input" to reinstantiate it again.