gwt

Where can I find the Eclipse Plugin for GWT 2.1 RC1?

I can't seem to find the Eclipse Plugin for GWT 2.1.0.RC1. GWT's site points me to the main update site... http://dl.google.com/eclipse/plugin/3.6 ...but this pulls the most recent GWT SDK: 2.0.4, not 2.1.0.RC1. I googled around for a while, but could not find either the update site to download from Eclipse, nor the SVN url to get ch...

Is it possible to add the same instance of a child to a StackLayoutPanel multiple times?

Hello! I have the following problem .. I am using StackLayoutPanel and when I try to add a child of the same instance of another stack will not let me and I remove his head and child. The question is how I can make my stack allows many children of the same instance? I tried to make a wrapper of the children by putting them in another L...

How to organize a GAE + GWT project with multiple modules

Hi, i would like to know if someone can recommends me a tutorial to organize my project, or if can explain me how can i do it. In my project i need this modules: a) Core (entities classes + daos) b) Backend (gwt module where the users can admin their app data, the user must logu in) c) Widgets (gwt module that loads an id in the url an...

GWT and Vaadin - variable is not a constructor stack

I have a strange error that I cannot make heads or tails of. A snippet of the error is below: (TypeError): $wnd.EGeoXml is not a constructor stack: $jsInit([object Object],[object Object],null) The actual lines of code is in GWT and looks like this: private native void jsInit(JavaScriptObject map, String kmlFile) /*-{ var exm...

Is it possible to overload Async Callbacks in GWT?

Hello, I have an overloaded query method on the server side. I wanted to know if I can overload the async callback, depending upon the method signature? Or is it advised to define two different asyncallbacks? These are my two methods o the server. public String fetchInADay(String startTime, String endTime) {} public String fetchInADay(...

How can I force a ListBox to fill entire free area ?

I put a ListBox into a tabele cell an want it to ocupy the whole cell (width="100% height="100%") and show as many rows as possible but: not specifyng setVisibleItemCount causes to show a big dropdownbox (i want a list) specifying setVisibleCout makes listbox to ignore height (it takes as much place as it needet to exacly display n ro...

how use an onclick with FlowPanel?

I tried this code: public class OwnFlowPanel extends FlowPanel implements HasClickHandlers{ public HandlerRegistration addClickHandler(ClickHandler handler) { return addDomHandler(handler, ClickEvent.getType()); } } and then I used this in another class: OwnFlowPanel panel = new OwnFlowPanel(); panel.addClickHandler(new ClickHan...

Seam GWT pageflow transition

Hi I am trying to integrate, Seam and GWT. I was wondering if can specify html pages in Seam page flow. Is it possible ? If yes what will the name in the tranisition stand for ? ...

GWT 2.1 and the Codehaus Maven plugin

Has anybody managed to get the release of GWT 2.1 to work with the Codehaus Maven plugin? http://mojo.codehaus.org/gwt-maven-plugin/ The 1.2 stable release does not seem to work. I found a version called 1.3.2 here in the SVN maven repo from GWT http://google-web-toolkit.googlecode.com/svn/2.1.0/gwt/maven/org/codehaus/mojo/gwt-maven-...

Deploying GWT app to Glassfish 3.0

Hello, I'm having some troubles figuring out if its possible to run a GWT Application inside a Glassfish Application Server 3.0. I was already able to run it using Tomcat, but that seemed more natural and more easy to do. Can you point out a place where I can learn how to deploy my app to glassfish? I'm currently using GWT Plugin wi...

GWT simple web form submit - redirect to new page

I have a simple web form written in Google web toolkit. I want the user to follow a new URL when he clicks on the submit button. However I cannot find any examples of redirecting the user to a new URL from within GWT code. How may I achieve this? ...

Refresh ListBox After Button clicked

Basically I have a page with a button and listbox on it. When the button is clicked, I use a ClickHandler to add another item to the listbox. However, the listbox is not refreshed unless I use the browser refresh button. Is there a way to do this programmatically without refreshing the entire Window? Thank you ...

An example of a Google Web Toolkit (GWT) Create Read Update and Delete (CRUD) Application

Hello Does anybody know of any examples of a Google Web Took (GWT) - based Create Read Update and Delete application. That is, an application which uses the GWT to manipulate and display the contents of a database. Thanks ...