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

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

Introduction

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

Prototype

public String getName() 

Source Link

Document

Form control or object name when submitted with a form.

Usage

From source file:gwtquery.plugins.enhance.client.gwt.ListBoxWidgetFactory.java

License:Apache License

protected void copyAttributes(SelectElement source, SelectElement destination) {
    destination.setDisabled(source.isDisabled());
    destination.setName(source.getName());
    destination.setSelectedIndex(source.getSelectedIndex());
    destination.setSize(source.getSize());

}