Example usage for com.google.gwt.dom.client ButtonElement getValue

List of usage examples for com.google.gwt.dom.client ButtonElement getValue

Introduction

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

Prototype

public String getValue() 

Source Link

Document

The current form control value.

Usage

From source file:com.cgxlib.xq.client.plugins.widgets.ButtonWidgetFactory.java

License:Apache License

protected void copyAttributes(ButtonElement source, ButtonElement destination) {
    destination.setAccessKey(source.getAccessKey());
    destination.setDisabled(source.isDisabled());
    destination.setName(source.getName());
    destination.setValue(source.getValue());
}