gwt

Gwt-gdata authentication

Hi guys, I'm writing an application with GWT and I found on the internet that there's a library to use easily gdata features. In particular I need to use the integration with Google Calendar. I followed the official guide on gwt-gdata site to do the authentication ( http://code.google.com/p/gwt-gdata/wiki/GettingStarted ) but unfortunate...

GWT : Composite not displaying

I have a this code for the layout : grid = new Grid(15, 15); tiles = new Tile[15][15]; for (int i = 0; i != 15; i++) { for (int j = 0; j != 15; j++) { tiles[i][j] = new Tile('a'); grid.setWidget(i, j, tiles[i][j]); tiles[i][j].setVisible(tru...

GWT back button browser

For example current page is www.google.com. But I typed a different website address in address bar and clicked. This site has fully GWT code. But I like to back to the previous page of www.google.com. So I clicked back button of browser.but how can I get event of back button from current GWT code. Can I set any backbutton event handler ...

Client or server side invocation to google API?

I'm writing a web application with GWT and I've to call google calendar's API to retrieve some information. I now have this dilemma: Is it better to use a client side invocation (using javascript or gwt-gdata library) or using the standard google library for java to call the service at server side and then passing all the data to the cli...

jquery gwt checkbox

how can i implement jquery expression if($("[name='abc']:checked").length > 1) in GWT?? ...

GWT load testing with jmeter

Hi folks, 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 with jmeter? I want to test login functionality: I have two text box 'User name' and 'Password' on login screen and want to te...

GWT : User Location

In GWT, is there a way to find out the user's physical location (country, state etc)? ...

Adding a google gadget to google maps application

Is there a way to add a Google gadget to Google maps application. I wanted add this (Local gas Price) gadget http://www.google.com/ig/directory?type=gadgets&url=marketingknight.com/google-gadget/local_gas.xml gadget to my Google map application whenever the user clicks on a maker on the map, is this possible? ...

Detecting completion of GWT Deck Panel Animation

I have a Deck Panel with AnimationEnabled(true). I want to know when the animation completes when i change the deck in order to perform other tasks. ...

GWT TextBox - Notification of value changes during editing

I have a TextBox on a Panel and I want to be notified when the value of the 'TextBox' changes. I have tried the following event handlers: ChangeHandler ValueChangeHandler KeyPresshandler My problem is that the ValueChangeHandler and ChangeHandler only fire when the focus leaves the controls. The KeyPressHandler fires correctly, but ...

remove tab from TabLayoutPanel programly , GWT

Hi, i need an idea how to remove tab if Button within this tab has been clicked. thx. ...

When and why does an EventHandler require objects to be final?

I have the following code from a GWT Project that is part of the onModuleLoad() method (similar to Java's main method, if you don't know GWT): final TextBox t1 = new TextBox(); final Label lt1 = new Label(); t1.addKeyUpHandler(new KeyUpHandler() { @Override public void onKeyUp(KeyUpEvent event) { // TODO Auto-generate...

Is this possible to list available alphabet of the current locale in GWT?

Is this possible to list available alphanet of the current locale in GWT? ...

GWT 2.0 integration with Spring Security 3.0

Hello, I used GWT 2.0 since a few days. So, I try to code an basic application with a login form and a page accessible only if i am logged. Usually in my web application with jsf for example, I use Spring Security 3.0 to configure and secure that kind of application. So, I decided to try to do the same thing with my GWT 2.0 application...

Looking for help with GWT Server mode and Weblogic.

Can anyone please help me with setting up GWT hosted mode with Weblogic? I found plenty of resources, but they seem to be geared towards Tomcat. Also GWT 2.0 seems to output and generate slightly different files than before which may also affect the setup. I am running Weblogic outside of Eclipse, using Weblogic 9.2 ANY help would b...

gwt not showing the right image

I have a gwt image object . In my code I set my visibleRect like this: btnSearch.setVisibleRect(-64,-80,16,16); So when I run my code with firebug the html looks like this: <img border="0" style="width: 16px; height: 16px; background: url(&quot;http://tempest/deltaflow/Content/Images/icon.png&amp;quot;) no-repeat scroll 64px 80px tr...

GWT application not displaying data on Windows 7 Starter Edition

I have a GWT application that works great on all platforms/browsers etc. Then we tried Windows 7 Starter Edition. For all browsers (Chrome, IE, Firefox) none of the dynamically displayed data appears in the application. We know that the machine is ok because Google Wave works fine and its also a GWT application. I'm at a loss. What co...

gwt simple check box

I used SimpleCheckBox.wrap(DOM.getElementById("x1")); in onModuleLoad()but when i checked that checkbox and press the submit button then another page will be displayed but when i click back button then i need to checkbox to be checked how can i maintain state of checkbox in GWT? currently checkbox`s state cant be persisted.it seemed to ...

Listen for all focus changes in GWT

I have a uibinder that has a bunch of textboxes on it, instead of adding a focus handler on each one I was wondering if I can add a focus listener to the enclosing panel and get notified when each textbox gains focus? ...

How to combine multiple uiBinder-based widgets?

I need to insert a [number of] uiBinder-based widgets into another one, at a particular spot. The inserted widget has a somewhat complicated layout, so I am trying to define it in HTML. referencePanel.add(...) fails with java.lang.IllegalStateException: This widget's parent does not implement HasWidgets. Don't know which widget's pare...