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

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

Introduction

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

Prototype

public boolean isDisabled() 

Source Link

Document

The control is unavailable in this context.

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());

}