Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. Its goal is to enable productive development of high-performance web applications without requiring the developer to be an expert in browser quirks, XMLHttpRequest, and JavaScript. GWT ...
145
votes
20answers
23k views
Biggest GWT Pitfalls?
I'm at the beginning/middle of a project that we chose to implement using GWT. Has anyone encountered any major pitfalls in using GWT (and GWT-EXT) that were unable to be overcome? How about from a ...
111
votes
12answers
47k views
How do I speed up the gwt compiler?
We're starting to make heavier use of GWT in our projects, and the performance of the GWT compiler is becoming increasingly annoying.
We're going to start altering our working practices to mitigate ...
90
votes
27answers
57k views
Best GWT widget library? [closed]
Question for all the GWT gurus out there - which is the best GWT widgets library out there? And why?
List based on the answers:
Default
EXT-GWT
GWT Components Library
GWT-EXT
GWT Widget Library
...
71
votes
17answers
47k views
Should I use Vaadin Framework
I just tried to play with Vaadin Framework and it seems to me very easy to use. Plus what I like about his framework is that it is built on top of GWT.
What do you think, should I continue using this ...
59
votes
8answers
16k views
When should I use RequestFactory vs GWT-RPC?
I am trying to figure out if I should migrate my gwt-rpc calls to the new GWT2.1 RequestFactory cals.
Google documentation vaguely mentions that RequestFactory is a better client-server communication ...
56
votes
15answers
28k views
Why should I use jQuery instead of GWT?
I need to decide between jQuery and GWT for my new project.
I haven't programmed in JavaScript for a while, and I was looking into GWT for the last few days. It looks pretty awesome, generating all ...
48
votes
4answers
26k views
Maven GWT 2.0 and Eclipse
Does anyone know of a good guide for creating a project with the new 2.0 release of GWT using maven and eclipse? I am running into a lot of problems getting them to play nicely together.
For what ...
45
votes
6answers
42k views
Multiple pages tutorial in Google Web Toolkit (GWT)
I just started learning Google Web Toolkit (GWT). How do I make different HTML pages in my GWT application?
For example, I want to create an application for a book store. In this application I'll ...
43
votes
6answers
29k views
How to use GWT 2.1 Data Presentation Widgets
At the 2010 Google IO it was announced that GWT 2.1 would include new Data Presentation Widgets. 2.1M is available for download, and presumably the widgets are included, but no documentation has yet ...
40
votes
10answers
4k views
to GWT or not to GWT [closed]
I'm a Java developer. To be honest, I'm a little intimidated about writing lots of javascript, so the idea of writing a web app completely in Java with GWT appeals to me!
I'm planning a new web app ...
39
votes
13answers
33k views
Json <-> Java serialization that works with GWT [closed]
I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. ...
38
votes
5answers
17k views
Regular Expressions and GWT
My questions is: Is there a good solution to use regular expression in GWT?
I'm not satisfied with the use of String.split(regex) for example. GWT translates the Code to JS and then uses the regex as ...
37
votes
8answers
44k views
GWT Custom Event Handler
Can someone give me an example of creating a custom set of an Event and a Handler.
Say you have a Person object that you want your widgets to know if it got updated.
You create a HandlerManager and ...
36
votes
2answers
28k views
GWT: Capturing URL parameters in GET request
I need to build a GWT application that will be called by an external application with specific URL parameters.
For example:
http://www.somehost.com/com.app.client.Order.html?orderId=99999.
How do ...
34
votes
13answers
16k views
GWT vs Flex vs? [closed]
My company is trying to migrate away from a .NET application to something that is purely web-based, and very "ajaxy". The original .NET app is fairly interactive, roughly equivalent to Google Maps as ...
34
votes
6answers
11k views
GWT module may need to be (re)compiled REDUX
When running in compiled mode I get this dreaded GWT Module 'mymodule' may need to be (re)compiled dialog message.
I've compiled a list of the things that others have suggested to try when given this ...
33
votes
11answers
11k views
Is a colon safe for friendly-URL use?
We are designing a URL system that will specify application sections as words separated by slashes. Specifically, this is in GWT, so the relevant parts of the URL will be in the hash (which will be ...
32
votes
9answers
4k views
How does the live, real-time typing work in Google Wave?
I'm sure Wave doesn't poll the server every millisecond to find out if the other user has typed something... so how can I see what the other person is typing as they type? And without hogging the ...
30
votes
2answers
18k views
GWT Custom Events
Hey I have a problem getting my head around how custom GWT event Handlers work. I have read quite a bit about the topic and it still is some what foggy. I have read threads here on Stackoverflow like ...
30
votes
7answers
55k views
Basic File upload in GWT
I'm trying to figure out how to upload one file using GWTs FileUpload widget. I'm using GWT and Google AppEngine with Java but I would like to upload file to my own Linux server.
I have the following ...
30
votes
2answers
14k views
Why use GWT.create() instead of new?
What is the difference between GWT.create(SomeClass.class) and new SomeClass()?
Why would you use one over the other?
30
votes
6answers
28k views
Java Generics: Generic type defined as return type only
I'm looking at some GXT code for GWT and I ran across this use of Generics that I can't find another example of in the Java tutorials. The class name is com.extjs.gxt.ui.client.data.BaseModelData if ...
29
votes
9answers
35k views
I want to vertical-align text in select box
I want to vertically align the text in select box. I tried using
select{
verticle-align:middle;
}
however it does not work in any browsers. Chrome seems to align the text in select box to the ...
28
votes
4answers
9k views
Threading in GWT (Client)
From what I understand, the entire client side of a GWT application is converted to Javascript when you build, therefore I suppose this question is related to both Javascript and the possibilities ...
27
votes
4answers
18k views
How to do calendar operations in Java GWT? How to add days to a Date?
Since GWT does not provide the GregorianCalendar class, how to do calendar operations on the client?
I have a Date a and I want the Date, which is n days after a.
Examples:
a (2000-01-01) + n (1) ...
26
votes
11answers
3k views
Has anyone used GWT and can say it really delivers what it promises? [closed]
I am a long time Java web developer and as most web developers I have used quite a lot of JavaScript. Even though I don't hate JavaScript as many other Java developers, I am still aware of its faults. ...
25
votes
6answers
8k views
Should I build a REST backend for GWT application
I am planning a new application and have been experimenting with GWT as a possible frontend. The design question I am facing is this.
Should I use
Option A: GWT-RPC and build the app quickly
...
25
votes
7answers
21k views
The cons and pros of smartGWT
I'm starting work on a smartGWT project in a few days and I'd like to know what kind of experiences you had. To avoid making this a bashing of smartGWT or GWT or a freestyle discussion, I'm going to ...
25
votes
5answers
6k views
GWT vs Dart - what are the main differences? Is Dart a potential replacement of GWT?
I'm trying to understand which of the two to use, having four main criteria
Writer better, maintainable client JavaScript code, with ease of modern IDE (better content assist, better debugging)
...
25
votes
4answers
16k views
GWT theme style overrides my css style
I have some html files with their own css. I want to use them in a gwt application so i copied the html and the css files in the application.
The problem is when i open the html it uses the gwt theme ...
25
votes
5answers
9k views
How to declare dependent style names with UiBinder
I have a simple UiBinder widget containing a TextArea:
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
...
25
votes
6answers
2k views
GWT “database” (client-side)
I'm looking for something like a database for GWT objects (inside the browser). It must work without HTML5 or Gears (or any browser plugins). It doesn't have to be capable of everything a database can ...
24
votes
3answers
6k views
24
votes
5answers
9k views
Why GWT? Advantages and Trade-Offs of Using This RIA Framework
I'm new to stackoverflow and have been reading through a bunch of the "highest voted" questions for GWT. Several of these questions talk about the pitfalls or problems with GWT. In the articles: ...
24
votes
9answers
21k views
How do I add a type to GWT's Serialization Policy whitelist?
GWT's serializer has limited java.io.Serializable support, but for security reasons there is a whitelist of types it supports. The documentation I've found, for example this FAQ entry, says that any ...
23
votes
11answers
10k views
String Formatter in GWT
How do I format my string in GWT?
I made a method
Formatter format = new Formatter();
int matches = 0;
Formatter formattedString = format.format("%d numbers(s, args) in correct position", ...
23
votes
2answers
7k views
exception in GWT RPC app
I am using GWT RPC & Hibernate to insert and retrieve data from MySQL using eclipse environment. I have written two methods in service interfaces to insert & retrieve data from a single MySQL ...
23
votes
5answers
11k views
What's your recommendation for architecting GWT applications? MVC, MVP or custom messaging solution?
I just started a new GWT project for a client and I'm interested in hearing people's experience with various GWT MVC architectures. On a recent project, I used both GXT MVC, as well as a custom ...
23
votes
5answers
3k views
C interpreter written in javascript
Is there any C interpreter written in javascript or java ?
I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of ...
23
votes
1answer
2k views
handling GWT RequestFactory server error responses
I have a newly coded GWT/GAE app that uses RequestFactory and Editors on the client and a custom Objectify DAO Service on the back.
The flush() then persist() paths work fine on success.
Client side ...
22
votes
9answers
23k views
GMail like file upload progress bar with GWT?
All Gmail users should have already noticed that file upload progress bar has been updated recently.
I'm wondering such effect is possible to implement with GWT.
I'm fairly new with GWT, so if any ...
22
votes
8answers
13k views
Clean way in GWT/Java to wait for multiple asynchronous events to finish
What is the best way to wait for multiple asynchronous callback functions to finish in Java before continuing. Specifically I'm using GWT with AsyncCallback, but I think this is a generic problem. ...
22
votes
9answers
19k views
Best data binding solution for GWT
Have you ever used one of the many half-baked data binding solutions for GWT? If so, how well did it work?
I'd like to stop rolling my own bindings for GWT but there's no clear winner in the data ...
21
votes
2answers
7k views
Documentation for @UiHandler
I started to look into using GWT in combination with UiBuilder. I'm a bit puzzled about how you can use the @UiHandler(..) directive to make simple event handle code as written down in the GWT ...
21
votes
5answers
14k views
Client side time zone support in GWT
I'm working on a GWT app where I need to support the following scenario:
The server is located in time zone A
The client's browser is set to time zone B
The GWT app is configured to display date/time ...
20
votes
3answers
9k views
Guava r07, GWT and javax.annotation.Nullable
I'm trying to use Guava in a GWT project without success (a HashMultimap, to be precise). I get a never-ending list of stacktraces for classes:
com.google.common.collect.ComparisonChain
...
20
votes
5answers
7k views
Real-world ZK vs GWT experience
A fellow developer and I are putting together a proposal for a new application, and we've presented both ZK and GWT to be possible choices. After messing around with both, I'd prefer to move ahead ...
20
votes
6answers
3k views
Sending persisted JDO instances over GWT-RPC
I've just started learning Google Web Toolkit and finished writing the Stock Watcher tutorial app.
Is my thinking correct that if one wants to persist a business object (like a Stock) using JDO and ...
20
votes
7answers
15k views
GWT & HTML5 Video in Mobile Safari
I'm trying to code a site in GWT that plays videos with HTML5. Everything works great on the desktop, but mobile Safari on both the iPhone and iPad do not play the video.
I can play a video using ...
19
votes
12answers
21k views
GWT - occasional com.google.gwt.user.client.rpc.SerializationException
we are haunted by occasional occurences of exceptions such as:
com.google.gwt.user.client.rpc.SerializationException: Type 'xxx' was not assignable to ...