Button

Live Demo

The Button component is normally used for initiating some action, such as finalizing input in forms. When the user clicks a button, a Button.ClickEvent is fired, which can be handled with a Button.ClickListener in the buttonClick() method.

You can handle button clicks with an anonymous class as follows:

Java

  1. Button button = new Button("Do not press this button");
  2. button.addClickListener(new Button.ClickListener() {
  3. public void buttonClick(ClickEvent event) {
  4. Notification.show("Do not press this button again");
  5. }
  6. });
  7. // Java 8
  8. button.addClickListener(click ->
  9. Notification.show("Do not press this button again"));

See the on-line example.

The listener can also be given in the constructor, which is often perhaps simpler.

The button component can be styled in many ways, as illustrated in Button in Different Styles of Valo Theme.

button example1

Button in Different Styles of Valo Theme

If you handle several buttons in the same listener, you can differentiate between them either by comparing the Button object reference returned by the getButton() method of Button.ClickEvent to a kept reference. For a detailed description of these patterns together with some examples, please see “Events and Listeners”.

CSS Style Rules

CSS

  1. .v-button { }
  2. .v-button-wrap { }
  3. .v-button-caption { }

A button has an overall v-button style. The caption has v-button-caption style. There is also an intermediate wrap element, which may help in styling in some cases.

Some built-in themes contain a small style, which you can enable by adding Reindeer.BUTTON_SMALL, etc. The BaseTheme also has a BUTTON_LINK style, which makes the button look like a hyperlink.