Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. The official docs cover all the basics and advanced topics - it's a great place to start and you'll often come back to it, when you want to expand your knowledge of the framework. The ...
4
votes
8answers
242 views
Java Object Oriented Concepts in Javascript
I have been using Java for a long time, and for quite some time I was doing web development using GWT (Google Web Toolkit). The beauty of it was that I had my Java object oriented constructs and would ...
23
votes
4answers
42k 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 ...
120
votes
21answers
20k 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 ...
78
votes
10answers
32k 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 ...
77
votes
27answers
43k 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
...
41
votes
6answers
26k 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 ...
19
votes
4answers
6k 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: ...
8
votes
2answers
3k 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 ...
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 ...
7
votes
1answer
963 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 ...
21
votes
4answers
10k 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 ...
1
vote
3answers
886 views
Vaadin alternative for heavily loaded UI
Currently I am programming the Web Application based on Vaadin. I am quite happy with the learning cycle and the way how easy UI can be designed.
In general pluses of Vaadin are:
"Native" UI ...
14
votes
7answers
9k 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.
...
5
votes
2answers
539 views
When to use assert in client & common GWT code
There are several questions on StackOverflow discussing the question of when one should use an assert statement versus throwing some exception. (Examples here, here, here, here, and here.
However, I ...
2
votes
4answers
697 views
JSP, Spring, Struts or GWT for College Project [closed]
Possible Duplicate:
Choosing a Java Web Framework now?
I am a final year student doing my Bachelor in Enginering(Computers) course from Mumbai University.
We are supposed to do a project ...
5
votes
5answers
14k 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. ...
43
votes
4answers
21k 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 ...
34
votes
15answers
25k views
Json <-> Java serialization that works with GWT
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. ...
32
votes
8answers
36k 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 ...
18
votes
8answers
16k 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 ...
2
votes
2answers
532 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 ...
9
votes
3answers
6k 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 ...
1
vote
3answers
840 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?
3
votes
5answers
3k views
Why are my breakpoints ignored with GWT, Eclipse, and Java 1.6.0_14?
After upgrading to Java 1.6.0_14, a GWT application in Eclipse no longer stops at breakpoints even though Eclipse shows that the breakpoints are active. Are there workarounds for this issue?
19
votes
4answers
11k 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 ...
26
votes
10answers
6k 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 ...
25
votes
6answers
20k 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 ...
4
votes
6answers
13k 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 ...
10
votes
4answers
6k 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?
5
votes
6answers
9k 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 ...
15
votes
3answers
4k views
7
votes
5answers
6k views
A good alternative to GWT for Clojure
I am writing a webapp in Clojure.
I almost want to use Google Web Toolkit for the frontend -- since I can just write Clojure/Java code, and have the library automatically generate the ...
3
votes
1answer
2k 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 ...
11
votes
3answers
3k 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.
...
3
votes
2answers
923 views
GWT SuggestBox + ListBox Widget
I would like to create a List Box which can provide me suggestions.The exact thing which i need to implement is the browsers navigation widget where we type in the website address.The functionality to ...
6
votes
7answers
2k 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 ...
4
votes
2answers
1k views
How can I launch more than one debug session in Eclipse from a single click?
I'm currently writing a GWT application through Eclipse. Eclipse is used for development but I use the m2eclipse plugin and a Maven pom.xml with the GWT plugin to build & run it.
When I need to ...
2
votes
2answers
184 views
Is it possible to deploy a Java Servlet to GAE?
Is it possible to deploy a Java Servlet to GAE, or does the server need to be hosted elsewhere?
1
vote
2answers
1k views
exclude directories from control mercurial
I have my GWT project set up with hg for version control, and want to exclude the generated files in the war/modulename folder entirely.
I would prefer not to have to use an --exclude switch with ...
2
votes
3answers
724 views
Reading request parameters in Google App Engine with Java
I'm modifying the default project that Eclipse creates when you create a new project with Google Web Toolkit and Google App Engine. It is the GreetingService sample project.
How can I read a request ...
1
vote
2answers
133 views
In PlayN, how can I get the HTML version of my project using Google's Guava libraries to compile?
I can run the Java version of my project fine by simply importing Guava libraries like so:
import com.google.gwt.thirdparty.guava.common.collect.ImmutableList;
Following the advice here, I've added ...
1
vote
1answer
1k views
SmartGwt DateItem useTextField=true - how to make text entry field UNeditable
Since I can't figure out how to solve my problem presented here I'm thinking for the moment at a temporary solution.
I have a smartgwt DateItem widget:
DateItem date = new DateItem("Adate");
...
1
vote
2answers
2k views
LazyInitializationException when adding to a list that is held within a entity class using hibernate and gilead for gwt
Right so i am working with hibernate gilead and gwt to persist my data on users and files of a website. my users have a list of file locations. i am using annotations to map my classes to the ...
0
votes
1answer
146 views
set the values in Listgrid (smartGWT)
I am trying to use smart Gwt, Listgrid.
I am using both com.google.gwt.user.client.ui and smart gwt.
I have value in a ListGridRecords[] records.
I am unable to set the values in table.
this piece ...
0
votes
3answers
187 views
How can I pass server session variables and attributes to the GWT engine?
I am wondering whether we can pass session attributes and parameters from JSP to GWT Entry
point.
Like I have integrated Struts2 with GWT.
Now, my question is, Can we pass a session attribute from ...
0
votes
1answer
402 views
GWT complex app, many screens. Architecture?
I'm making a GWT application which will have many screens. There will be a menu on the left and clicking a menu option will open the relevant module in the right side content area. Clicking on items ...
31
votes
6answers
30k 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 ...
38
votes
6answers
9k 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 ...
15
votes
11answers
17k views
Google Web Toolkit (GWT) + Google App Engine (GAE) + Detached Data Persistence
I would like to develop a web-app requiring data persistence using GWT and GAE. As I understand it, my only (or at least by far the most convenient) option for data persistence is GAE's Datastore, ...
32
votes
9answers
3k 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 ...