List of usage examples for com.google.gwt.dom.client SelectElement getName
public String getName()
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()); }