Book Image

Vaadin 7 UI Design By Example: Beginner's Guide

Book Image

Vaadin 7 UI Design By Example: Beginner's Guide

Overview of this book

Vaadin is a mature, open-source, and powerful Java framework used to build modern web applications in plain Java. Vaadin brings back the fun of programming UI interfaces to the web universe. No HTML, no CSS, no JavaScript, no XML. Vaadin lets you implement web user interfaces using an object oriented model, similar to desktop technologies such as Swing and AWT. Vaadin 7 UI Design By Example: Beginner's Guide is an engaging guide that will teach you how to develop web applications in minutes. With this book, you will Develop useful applications and learn basics of Java web development. By the end of the book you will be able to build Java web applications that look fantastic. The book begins with simple examples using the most common Vaadin UI components and quickly move towards more complex applications as components are introduced chapter-by-chapter. Vaadin 7 UI Design By Example: Beginner's Guide shows you how to use Eclipse, Netbeans, and Maven to create Vaadin projects. It then demonstrates how to use labels, text fields, buttons, and other input components. Once you get a grasp of the basic usage of Vaadin, the book explains Vaadin theory to prepare you for the rest of the trip that will enhance your knowledge of Vaadin UI components and customization techniques.
Table of Contents (17 chapters)
Vaadin 7 UI Design By Example Beginner's Guide
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Client side applications


We have seen how to create a composition of server-side UI components. This approach is good if you can rely on existing components. But, what if you need something new? What if you need a high responsive component that avoids going to the server too frequently? What if you need some fine-grained tuning on some UI component? The Vaadin client side framework is the tool to accomplish this kind of requirements.

Vaadin client framework is based on GWT, so everything you can do with GWT, you can do with Vaadin. In this section we are going to develop a pure client side application using the Vaadin client side framework.

Note

Explaining GWT would require a whole book. In fact, there are some really good books on the matter such as Google Web Toolkit 2 Application Development Cookbook by S. Ahammad and Google App Engine Java and GWT Application Development by D. Guermeur and A. Unruh. For our purposes, we are going to learn some fundamental aspects of GWT, but remember that...