List/Grid Tag Archives: Google GWT

GWT and HTML5 Canvas Demo
This is my first experiment with GWT and HTML5 Canvas. My first attempt is to create rectangles, with just a few lines of code I came up something like this:Code:public ...

GWT Custom Button using UIBinder
Here’s an example on how to create a custom button using UIBinder on GWT.public class GwtUIBinderButton implements EntryPoint {public void onModuleLoad() { Button button ...

Getting started with GWT
GWT short for Google Web Development Kit lets programmers to develop Ajax web applications with java. Java codes are converted in to JavaScript and html codes by the GWT compiler. GWT ...

GWT MVP made simple
GWT Model-View-Presenter is a design pattern for large scale application development. Being derived from MVC, it divides between view and logic and helps to create well-structured, ...

GWT – Pros and Cons
I love JavaScript. With the advent of jQuery and Mootools, my love for JavaScript has only increased plenty-fold. Given a choice I would use either of the aforementioned frameworks ...

Spring GWT Integration using the RequestFactory API
Beginning from GWT 2.4 the integration of the RequestFactory API with Spring services on the backend is easy all you need to do is create a custom ServiceLocator on your server which ...

Testing GWT Apps with Selenium or WebDriver
Good functional testing is one of the most difficult tasks for web application developers and their teams. It is a challenge to develop tests that are cheap to maintain and yet provide ...

GWT, GWT-Ext (SmartGWT), GXT (Ext GWT) Common Tasks
I was browsing through some old posts at UI-Programming blog, one of our JCG partners, and noticed that there were a lot of short articles on how to perform some common tasks using ...

Advanced SmartGWT Tutorial, Part 2
This is the second part of my tutorial regarding rapid UI development with SmartGWT. In the first part of the tutorial, we created the basic interface layout and added some basic components. ...

Advanced SmartGWT Tutorial, Part 1
Justin, Pat and I have started working on a side project that requires a user interface for administration and management. After working for a while with SmartGWT and GWT in general, ...

