Skip to main content
Inspiring
March 21, 2023
Answered

Lista

  • March 21, 2023
  • 1 reply
  • 450 views

Boa noite,

Não sei se isso é possivel ou não por se tratar de um documento em pdf.

Mas gostaria de fazer o seguinte:

Tenho uma caixa de lista (Exemplo: Cartão 1, Cartão2, Cartão3)

Gostaria de ao clicar em uma das opções o cursor ir directamente para o campo correspondente.

This topic has been closed for replies.
Correct answer try67

If this is a drop-down field you can use the the following as its custom Validation script (make sure to tick the box to commit the selected field automatically, under Properties - Options):

 

this.getField(event.value).setFocus();

 

Of course, this would only work if there are fields whose names are exactly the same as the items in the drop-down.

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
March 21, 2023

If this is a drop-down field you can use the the following as its custom Validation script (make sure to tick the box to commit the selected field automatically, under Properties - Options):

 

this.getField(event.value).setFocus();

 

Of course, this would only work if there are fields whose names are exactly the same as the items in the drop-down.