Tagged Questions
111
votes
19answers
19k 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 ...
67
votes
22answers
37k views
Best GWT widget library?
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
...
62
votes
10answers
26k 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 ...
45
votes
13answers
29k 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 ...
40
votes
6answers
24k 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 ...
37
votes
5answers
19k 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 ...
28
votes
8answers
31k 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 ...
28
votes
13answers
14k views
GWT vs Flex vs?
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 ...
25
votes
10answers
2k views
Has anyone used GWT and can say it really delivers what it promises?
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. ...
24
votes
10answers
5k 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 ...
24
votes
5answers
10k views
Looking for pros/cons of using GWT or JSF [closed]
I'm a long time Java developer who has been building UI with Adobe Flex for the past few years. I'm looking to broaden my repertoire with a RIA technology that runs in a plain-old browser, no ...
23
votes
5answers
1k 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 ...
22
votes
7answers
2k views
to GWT or not to GWT
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 ...
21
votes
1answer
947 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 ...
20
votes
5answers
8k 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 ...
20
votes
6answers
17k 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 ...
18
votes
2answers
719 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 ...
18
votes
4answers
36k 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 ...
18
votes
9answers
13k 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 ...
18
votes
8answers
14k 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 ...
17
votes
4answers
5k 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: ...
14
votes
6answers
8k views
Problems passing class objects through GWT RPC
I've run through the Google Web Toolkit StockWatcher Tutorial using Eclipse and the Google Plugin, and I'm attempting to make some basic changes to it so I can better understand the RPC framework.
...
13
votes
2answers
527 views
When not to use Google Web Toolkit? [closed]
I'm considering use of GWT on a major in-house web app development project, namely it's major advantage in my eyes is the cross-compilation to Javascript which would (at least theoretically) help my ...
13
votes
4answers
535 views
How does the scrolling on “Google Maps for Mobile” work?
Visit http://www.google.com/gmm with a mobile device - the scrolling is super smooth even with floating toolbars. How are they accomplishing this with GWT?
Update
I mean the site as seen by a mobile ...
12
votes
2answers
1k views
GWT - easiest way to do a simple loading screen until file is loaded
When clicking a button, my GWT application returns a PDF file embedded in an HTML page which looks something like:
<html><head></head>
<body marginwidth="0" marginheight="0" ...
12
votes
5answers
5k views
How to use the GWT editor framework for validation?
I am trying to integrate with the new GWT Editor framework of GWT 2.1.0. I also want to add my validation checks into the framework. However, I am struggling to find a decent example how to do this.
...
12
votes
3answers
3k views
12
votes
3answers
13k views
How to layout widgets using DockLayoutPanel and UiBinder in GWT 2.0?
I'm trying to get a simple layout working under GWT 2.0 using UiBinder. The layout I'm trying to get is one that mimic Java's BorderLayout in where you can specify different panels in the north, ...
12
votes
4answers
8k 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 ...
12
votes
3answers
4k views
workaround for GWT+Jetty JSP compiler issue? (Java 1.5 source level not recognized)
As this thread shows, there seems to be an issue getting JSPs to compile in GWT hosted mode with the new Jetty server:
2. ERROR in /tmp/Jetty_0_0_0_0_8080_war____ut4fm1/jsp/org/apache/jsp/
...
12
votes
14answers
14k views
best way to externalize HTML in GWT apps?
What's the best way to externalize large quantities of HTML in a GWT app? We have a rather complicated GWT app of about 30 "pages"; each page has a sort of guide at the bottom that is several ...
11
votes
1answer
518 views
GWT to create utility javascript library
I need to create javascript library which will be called from other javascript code.
Is it possible to create javascript library using GWT and Java classes? No entry points, no UI - just some utility ...
11
votes
4answers
728 views
Best books to learn Google app engine and GWT?
Can you recommend some great book to learn how to make app with web services for the Google app engine?
11
votes
6answers
12k views
Creating a fluid panel in GWT to fill the page?
I would like a panel in GWT to fill the page without actually having to set the size. Is there a way to do this? Currently I have the following:
public class Main implements EntryPoint
{
...
10
votes
3answers
279 views
Using a nested enum in GWT-RPC
I have an enum with a nested enum (which I want to make private), but when I do so GWT tells me that the nested enum is not visible and throws an exception.
public enum OuterEnum {
...
10
votes
3answers
629 views
MVP: Should the View implement a Presenter's interface or vice versa?
I am doing my first steps with GWT.
I have a question after reading:
Large scale application development and MVP
Large scale application development and MVP - Part II
In the first example the ...
10
votes
2answers
2k views
Is there a recommended way to use the Observer pattern in MVP using GWT?
I am thinking about implementing a user interface according to the MVP pattern using GWT, but have doubts about how to proceed.
These are (some of) my goals:
the presenter knows nothing about the ...
10
votes
2answers
3k views
GWT 2.0 Themes?
The default GWT themes are hideous. Does anyone know where a developer can find prepackaged themes that one can just 'drop' into an app and make the app look beautiful? Even worse, GWT 2.0's new ...
10
votes
1answer
4k views
GWT and Authentication
What are the best strategies to secure your GWT + Tomcat app to perform authentication and authorization?
10
votes
3answers
4k views
Automatic 'loading' indicator when calling an async function
I am looking for a way to automate showing and hiding a 'loading' message when calling an async service, so instead of doing this:
showLoadingWidget();
service.getShapes(dbName, new AsyncCallback() ...
10
votes
4answers
7k views
GWT - What's a good GUI editor for GWT in Intellij IDEA?
The one that ships with IDEA is nothing more than a GWT project creation tool. Is there a better plugin? Is there a standalone GUI editor for GWT?
10
votes
4answers
4k views
integrating Grails and GWT
GWT seems like a really nice technology for Java developers who don't like (or don't know) HTML/JS/CSS to build rich web interfaces. On the server-side Grails also looks really nice, it's often ...
9
votes
3answers
139 views
Best GWT CodeSplitting design to encapsulate “modules”
I am currently faced with quite a challenging issue related to GWT codesplitting and was hoping for some help.
I currently work on a large legacy GWT application (pre-MVP days) and I am looking to ...
9
votes
2answers
2k views
GWT CellTable with checkbox selection and on row click event
How to call a method when some row is clicked using the checkbox selection model?
I'm setting the checkbox selection model like this:
table.setSelectionModel(selectionModel,
...
9
votes
2answers
943 views
Unit testing of GWT RequestFactory services without GWTTestCase
Somewhere, I don't remember where, I spotted information, that starting from GWT 2.1.1 it is possible to test ReqeustFactory services without GWTTestCase. If this is true, please show me how.
9
votes
4answers
1k views
How do I use OAuth within my GWT application?
How do I use OAuth within my Java GWT application?
In particular, I want to get a list of users in my Google Aps domain, using this API:
...
9
votes
8answers
3k 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", ...
9
votes
6answers
7k 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. ...
9
votes
2answers
3k views
Is it possible to debug GWT client code on a REMOTE server using IntelliJ 9 Community Edition?
I'm trying to move our Google Web Toolkit (GWT) development from Eclipse to IntelliJ 9 Community edition. So far I've been able to run and debug client/server code successfully via the GWT Maven ...
9
votes
4answers
3k views
How to integrate Spring Security and GWT?
I'm trying to integrate Spring Security and GWT. I'm also using gwt-incubator-security. I configured everything as it was described on their wiki pages.
I managed to get security working by using ...