Book Image

Ext GWT 2.0: Beginner's Guide

By : Daniel Vaughan
Book Image

Ext GWT 2.0: Beginner's Guide

By: Daniel Vaughan

Overview of this book

<p>Ext GWT, also known as GXT, takes Google Web Toolkit one step further by providing a wide range of powerful user interface components. It allows a developer to create powerful web applications that are almost like desktop applications. However to leverage all the features of this powerful Java library for creating desktop-style web applications, you need to learn how and when to use the right user interface component.<br /><br />Ext GWT 2.0: Beginner's Guide is a practical book that teaches you how to use the EXT GWT library to its full potential. It provides a thorough and no-nonsense explanation of the Ext GWT library, what it offers and how to use it through practical examples. This book provides clear, step-by-step instructions for getting the most out of Ext GWT and offers practical examples and techniques that can be used for building your own applications in EXT GWT<br /><br />This book gets you up and running instantly to build powerful Rich Internet Applications (RIA) with Ext GWT. It then takes you through all the interface-building widgets and components of Ext GWT using practical examples to demonstrate when, where, and how to use each of them. Layouts, forms, panels, grids, trees, toolbars, menus, and many other components are covered in the many examples packed in this book. You will also learn to present your data in a better way with templates and use some of the most sought-after features of Ext GWT in your web applications such as drag-and-drop and charts. Throughout the book a real application is built step by step using Ext GWT and deployed to Google App Engine.</p> <p>Imagine how great you'll feel when you're able to create great-looking desktop-style user interfaces for your web applications with Ext GWT!</p>
Table of Contents (17 chapters)
Ext GWT 2.0 Beginner's Guide
Credits
About the Author
About the Reviewers
Preface
Index

Time for action – creating a Feed overview ListView


  1. Create a new class in the client.lists package named FeedOverviewView that extends LayoutContainer:

    public class FeedOverviewView extends LayoutContainer {
  2. Define a ListView field:

    private ListView<BeanModel> listView = new ListView<BeanModel>();
  3. Override the onRender method of the LayoutContainer and add a DataProxy, DataReader, and Loader to populate a feedStore in the same way as we did in the FeedList class:

      @Override
      protected void onRender(Element parent, int index) {
        super.onRender(parent, index);
    
        final FeedServiceAsync feedService = (FeedServiceAsync) Registry
            .get(RSSReaderConstants.FEED_SERVICE);
    
        RpcProxy<List<Feed>> proxy = new RpcProxy<List<Feed>>() {
          @Override
          protected void load(Object loadConfig,
            AsyncCallback<List<Feed>> callback) {
              feedService.loadFeedList(false, callback);
          }
        };
        BeanModelReader reader = new BeanModelReader...