Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Codename one set next Textfield to be focused

Tags:

codenameone

I'm new using codename one, i need set the order how the textfields will be focus

http://i.prntscr.com/9c5f0a08fe214d639fc09f228bf814db.png

the user fill the field "telefono fijo"(Homephone). When the user press the next key(red circle), the focus is going down to the "Correo electronico"(email) textfield instead to the "celular" textfield.

How can I handled the focus direction after key next was pressed?

like image 626
torresfcamilo Avatar asked Nov 28 '25 17:11

torresfcamilo


1 Answers

The next button is moving the focus from the textfield.getNextFocusDown() method, you can use the setNextFocusDown on your TextField to modify the default behavior

like image 135
Chen Avatar answered Dec 01 '25 18:12

Chen