Copy link to clipboard
Copied
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.
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.
Copy link to clipboard
Copied
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.