Set focus on AutoCompleteForMendix drop-down

0
We have the following pop-up with an AutoCompleteForMendix drop-down. When the pop-up opens, the users don’t want to click on the input field to select the recipient. They want to start typing right away. Is there a way to do this?
asked
2 answers
2

You can set the tabIndex property of the radio button widget to -1. This way the focus will be directly shifted to the next element on page which is your dropdown.

Hope this helps!

answered
0

Have you considered putting the input field first on the popup, swapping places with the enum field? It might be better UX, since the users indicate that it is the first action they want to do on this screen.

answered