From 99d6de546c74f0eed230ea8253dda6b85109d2e7 Mon Sep 17 00:00:00 2001 From: Markus Koivisto Date: Fri, 22 Jan 2016 14:55:18 +0200 Subject: Add documentation to master branch Change-Id: I2504bb10f1ae73ec0cbc08b7ba5a88925caa1674 --- .../clientsidewidgets-vaadin.asciidoc | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc (limited to 'documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc') diff --git a/documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc b/documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc new file mode 100644 index 0000000000..21dc4d9e27 --- /dev/null +++ b/documentation/clientsidewidgets/clientsidewidgets-vaadin.asciidoc @@ -0,0 +1,37 @@ +--- +title: Vaadin Widgets +order: 3 +layout: page +--- + +[[clientsidewidgets.vaadin]] += Vaadin Widgets + +Vaadin comes with a number of Vaadin-specific widgets in addition to the GWT +widgets, some of which you can use in pure client-side applications. The Vaadin +widgets have somewhat different feature set from the GWT widgets and are +foremost intended for integration with the server-side components, but some may +prove useful for client-side applications as well. + + +---- +public class MyEntryPoint implements EntryPoint { + @Override + public void onModuleLoad() { + // Add a Vaadin button + VButton button = new VButton(); + button.setText("Click me!"); + button.addClickHandler(new ClickHandler() { + @Override + public void onClick(ClickEvent event) { + mywidget.setText("Clicked!"); + } + }); + + RootPanel.get().add(button); + } +} +---- + + + -- cgit v1.2.3