Set focus component in popup of ADF

850 Views Asked by At

How can I set focus to a component in my fragment page that is used like a popup?

(I use in task-flow, ADF component.) For example, focus to <af:panelBox />

1

There are 1 best solutions below

0
On BEST ANSWER
    document.getElementById("firstName").focus();

This code focus to the choosen component.