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 ...

learn more… | top users | synonyms (2)

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 ...
111
votes
12answers
48k 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 ...
26
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 ...
18
votes
3answers
4k views

question on GWT, Cookies and webpage directing

i am using gwt to create a website. this question is regarding a login page and cookies to save login details. GWT allows you to create a website within a single webpage. my application runs on one ...
11
votes
1answer
2k views

Using init servlet

I am working on a GWT project and naturally need to get some configuration and connect to external resources/objects/systems somewhere. My GWT application interface only has two methods. There are ...
29
votes
9answers
36k 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 ...
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 ...
39
votes
13answers
34k 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. ...
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 ...
11
votes
2answers
4k 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 ...
1
vote
3answers
2k views

GWT: How to create a new page

I have a GWT MVP application with one page. How can I create a new page and link to it?
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 ...
1
vote
1answer
315 views

GWT CellTable CheckboxCell Not working in IE8

I am having a CellTable with CheckboxCell in it. I have added the following handler to it: private static Column<AIDataRecord, Boolean> m_checkColumn = new Column<AIDataRecord, ...
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 ...
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 ...
19
votes
7answers
12k 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. ...
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 ...
24
votes
3answers
6k views

Guava libraries and GWT

Just discovered the Guava libraries project. Do these work with GWT?
18
votes
1answer
7k views

Using the GWT Scheduler

I'm having a tough time understanding the difference between various methods of the com.google.gwt.core.client.Scheduler interface, specifically, the scheduleDeferred, scheduleFinally, and ...
6
votes
2answers
6k views

HTMLUnit doesn't wait for Javascript

I have a GWT based page that I would like to create an HTML snapshot for it using HtmlUnit. The page loads using Ajax/JavaScript information on a product, so for about 1 second there is a Loading... ...
12
votes
3answers
6k views

Debug GWT application in a remote browser

I try to debug the GWT app in a remote browser (located on other computer than Eclipse instance) for example in VMware environment. Unfortunately while opening address below there is no connection. ...
7
votes
7answers
4k views

Can search engines index JavaScript generated web pages?

Can search engines such as Google index JavaScript generated web pages? When you right click and select view source in a page that is generated by JavaScript (e.g using GWT) you do not see the ...
5
votes
6answers
19k views

org.apache.xerces.jaxp.SAXParserFactoryImpl not found when importing Gears API in GWT

I've created a GWT project using Eclipse which was working perfectly (I was able to run it in both Hosted Mode and on Google App Engine) until I tried to import the Gears API for Google Web Toolkit. ...
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 ...
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 ...
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: ...
17
votes
1answer
12k views

How to use the GWT EventBus

I am not yet familiar with GWT and wonder myself how to use the EventBus or if there are some better solutions to send an Event through the project. Widget 1 has a Button. Widget 2 has a Label, that ...
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 ...
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 ...
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" ...
15
votes
3answers
11k views

Instant value change handler on a GWT textbox

I would like to update a text field instantly when typing in a GWT TextBox. My problem is that ValueChangeEvent and ChangeEvent handlers only fire when the TextBox loses focus. I thought about using ...
10
votes
4answers
9k views

How do I style a gwt 2.1 CellTables headers?

I see nothing in the documentation except a reference to include some "CssResource" and get it with ClientBundle, but how do I exactly override the tbody and th of a CellTable? Is this possible?
4
votes
1answer
7k views

how to clear cache in gwt?

How can I clear the cache in gwt? or is there any way that prevent browser to keep the cache in gwt?
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 ...
2
votes
2answers
800 views

What does it call in GWT to make 2 UI consistent?

I saw a video of Google I/O and found an example of GWT UI being very consistent between clients. Which you can save, add, drag and drop in almost real time between clients. I currently don't ...
7
votes
3answers
5k views

gwt - Using List<Serializable> in a RPC call?

I have a RPC service with the following method: public List<Serializable> myMethod(TransactionCall call) {...} But I get a warning when this method is analyzed, and then the rpc call ...
2
votes
3answers
759 views

Binary Data and GWT

There are a couple of questions about binary data and GWT already. After reading them I am still not sure if the following is possible or not (I am a complete GWT beginner though!): I have some very ...
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 ...
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 ...
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 ...
14
votes
4answers
6k 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() ...
8
votes
4answers
5k views

Using GWT Editors with a complex usecase

I'm trying to create a page which is very similar to the Google Form creation page. This is how I am attempting to model it using the GWT MVP framework (Places and Activities), and Editors. ...
5
votes
8answers
16k views

GWT with JPA

I'm trying to build database application using GWT 1.5.3. I use JPA annotations with my objects. It seems in hosted mode GWT's RPC works fine. But when I try to compile my app using GWT-compiler I ...
14
votes
6answers
13k views

Eclipse 3.4 GWT 1.6 project - how to reference source from other projects?

I've got a GWT 1.6 project in Eclipse 3.4 and am trying to reference source from another (non-GWT) project in my workspace. I've added the project to my build path, but I can't run the application in ...
9
votes
2answers
11k views

Adding clickHandler to row in CellTable in GWT?

I have created a basic CellTable and filled it with some data. Now I want to add a clickHandler to each row but I'm not sure how to do this. I've created a clickEvent for the whole table but I want ...
6
votes
6answers
10k views

GWT with JDO problem

I just start playing with GWT I'm having a really hard time to make GWT + JAVA + JDO + Google AppEngine working with DataStore. I was trying to follow different tutorial but had no luck. For example I ...
10
votes
8answers
5k views

GWT load testing with jmeter

I have a GWT application and wanna to test load and functionality using a tool like jmeter. I am not sure jmeter is right tool for GWT. Can anybody direct me to proper tool or can tell me how to do it ...
12
votes
1answer
4k views

gwt and javascript files

In my Google web toolkit application, my gwt.xml file includes the following line in the module: <module rename-to='foo'> ... <script src="foo.js"></script> ... My question is: ...
6
votes
4answers
7k views

Can you use Java Reflection api in GWT client

IS it possible to use the java reflection api in GWT client side? I want to use reflections to find the value of a property on a Javabean. Is this possible?
4
votes
1answer
3k views

How to set Expires HTTP header on a single JS file in Apache Tomcat?

I have a js file which is cached between 5-10 minutes, depending on whether I'm using tomcat from the eclipse (via GWT plugin) or starting tomcat as standalone. This is strange as I'm using GWT as my ...

1 2 3 4 5 27