Example usage for com.google.gwt.dom.client SelectElement focus

List of usage examples for com.google.gwt.dom.client SelectElement focus

Introduction

In this page you can find the example usage for com.google.gwt.dom.client SelectElement focus.

Prototype

@Override
    public void focus() 

Source Link

Usage

From source file:uk.ac.ebi.fg.annotare2.web.gwt.editor.client.view.widget.EditSelectionCell.java

License:Apache License

protected void edit(Context context, Element parent, String value) {
    setValue(context, parent, value);/*ww w.  j a v  a2s  . c o  m*/
    SelectElement input = getSelectElement(parent);
    input.focus();
}