GWTiger - Release Notes


Release 0.1.4 - Oct 17, 2007

  1. Added Server Exception Handlers
  2. Minor fixes

Release 0.1.3 - Sept 23, 2007

  1. Internationalized the framework
  2. Created localized version of the GWTigerDemo application
  3. Created the localized version of the Online Mask Demo to show local mask feature
  4. Built on GWT 1.4.60

Release 0.1.2 - Sept 2, 2007

  1. Fixed the Hover grid problem with Firefox
  2. Added Support for Tab/Wizard interface
  3. Added CSS for Hover Grid
  4. Built on GWT 1.4.60

Release 0.1.1 - Aug 22, 2007

  1. Added Complete support for back button. All you have to do is to add the call addHistorySupport(); in your onModuleLoad method
  2. Fixed bug with Mask Edit. Now backspace works in Firefox and Safari
  3. Built on GWT 1.4 RC2

Release 0.1.0 - Aug 15, 2007

This is the first release of GWTiger Application framework for GWT.
This release includes the following features:-

Widgets and Panels

GWT is a great tool with a lot of flexibility. WHen you are building a data entry screen or a form, you will have to write a lot of code to have widgets inside a horizontal panel which itself goes into a vertical panel which is embedded in some other panel. GWTiger will reduce that complexity by giving you a class that has built in label, field (text, password, list etc.) and a place for error message. All combined together in one easy package. All you have to do is:- TextFieldWidget txtUserId = new TextFieldWidget("User Id");

Field Validation

Very easily add field validation to your application. Making a field required is as simple as calling txtUserId.setRequired(true);

Mask Controls

GWTiger has widgets to provide Mask controls. E.g if you would like someone to enter their phone number in the format (122) 122-1222 all you have to do is to setup a mask control as MaskTextFieldWidget txtPhone = new MaskTextFieldWidget("Phone","(###) ###-####");

Lazy loading

Each screen may take 2-3 seconds to load. If you build a large application, it may take several seconds/a minute for the application to load. With GWTiger you can use pre built functions to load your screens only when/if you need them.

Login screen

The demo application comes with a template and entire logic to build a login screen including the server side code.