Example usage for com.vaadin.v7.ui.themes BaseTheme BUTTON_LINK

List of usage examples for com.vaadin.v7.ui.themes BaseTheme BUTTON_LINK

Introduction

In this page you can find the example usage for com.vaadin.v7.ui.themes BaseTheme BUTTON_LINK.

Prototype

String BUTTON_LINK

To view the source code for com.vaadin.v7.ui.themes BaseTheme BUTTON_LINK.

Click Source Link

Document

Creates a button that looks like a regular hypertext link but still acts like a normal button.

Usage

From source file:com.haulmont.cuba.web.widgets.CubaButtonField.java

License:Apache License

@Override
protected Component initContent() {
    Button button = new CubaButton();
    button.setStyleName(BaseTheme.BUTTON_LINK);
    return button;
}