Moves the focus to the specified element. This will trigger any relevant JavaScript event handlers. @param newElement the element that will receive the focus, use null to remove focus from any element @return true if the specified element now has the focus @see #getFocusedElement()
(final DomElement newElement)
| 2517 | * @see #getFocusedElement() |
| 2518 | */ |
| 2519 | public boolean setFocusedElement(final DomElement newElement) { |
| 2520 | return setFocusedElement(newElement, false); |
| 2521 | } |
| 2522 | |
| 2523 | /** |
| 2524 | * Moves the focus to the specified element. This will trigger any relevant JavaScript |