gwt

jQuery vs GQuery Benchmark

I remember stumbling upon a benchmark comparing jQuery vs GQuery (run time selectors) vs GQuery (compile time selectors). Once the site was loaded one could click "Start" and the benchmark (mostly CSS selectors) would run for all three versions and present the results (overall time spent) after finishing. Unfortunately, I cannot find it ...

No handlers matched this URL -- URL points to GWT file

I get this warning often in my Google App Engine for Java warning console. It's strange because the URL that it claims isnt handled, is the url generated by GWT (im using GWT client-side). Heres an example: /myAppName/62865E45F313D707543A6F093D199127.cache.html They only happen occasionally, but its enough to make a single visit u...

GWT getting missing-plugins message

When i tried to run an GWT sample application i got a missing-plugins on firefox (or Chrome) it seems that i'm missingg something just dont know what to do in order to make it works... any ideas?? ...

GWT "database" to store data server-side

Hi, I'm looking for the easiest way to store data on the server-side of the GWT app. The application is typical: consists of the client-side interface and server-side that performs all the calculations. I just need to store the data on the server. The application would be deployed to google code so the solution must obey the app engine ...

GWT Spring Integration - How to do AOP logging?

I have a GWT application where its RPC services are handled by a GWTHandler bean so that it can integrate with Spring smoothly. The application works. No problem with that. My issue is I can't do any AOP logging with Spring. I like to log user activities from the GWT interface using AOP. (I could of course do it the old way of calling ...

What widget kit / framework is Woopra using?

Hi, If you use Woopra, you probably know that several months ago they released a web based analysis tool. I was surprised by how smooth and well designed it was. Taking a look at the source code, it seemed to be coded using GWT. However, its Mac look and feel reminds me of Sproutcore. I'm not aware of a look and feel like it for GWT. I...

How to add a close button to the caption bar of a GWT DialogBox

I need to add a close button to the caption bar of my dialog box . I'm able to place a widget in the caption bar , but not been able to get the events for it . ...

GWT FCKEditor integration

Hello! Does anyone know full FCKEditor integration for GWT including image uploading (java connector)? Thanks in advance! ...

GWT and WebServices (wsdl)

Hello, Can anyone point me a way to access WSDL webservices from a GWT client? Is that even possible? Thanks! ...

GWT: How to send POST cross domain requests with JSON

As its Javadocs suggest, the JsonpRequestBuilder can only send GET requests. I need to send POST requests using the same method (for cross domain requests using JSON). Does anybody know any working solution? I could not find any starting point on the web. thanks in advance ...

Missing Plugin GWT error in Eclipse

Hello, I'm trying to run an existing GWT project in Eclipse as a Web Application. This runs on other people's PCs, and I used a setup document common to us all to install Eclipse and GWT. I consistently got the error: Google Error Not Found The requested URL /missing-plugin/ was not found on this server. So far, I have verified that...

GChart on GAE wont show

I am using Eclipse with GAE on a MacBook Pro with GChart. My problem is that I cant get any chart to show when I am developing, but when I use regular tools such as Buttons or Labels with GAE they work just fine. The code doesn't give me any errors, so I am assuming that I have the right code: public class TestingTesting implements Ent...

Added GWT to web app. Other devs complain about compile time. What should I tell them?

I recently added GWT to our project to implement an Ajax feature of our web app. The other devs are complaining about the extra time GWT compile adds to the build and are asking why I didn't use JSON and jQuery instead. What should I tell them? ...

How to apply CSS to a DialogBox using ClientBundle?

Hi I'm trying to apply some CSS to my subclass of DialogBox via ClientBundle. When inspecting the DOM I can see an obfuscated class-name got added (class="gwt-DialogBox GF2AVPFBPD") but it does not bear/apply any propertes/changes... class RegistrationDialog extends DialogBox { interface MyClientBundle extends ClientBundle ...

Sumbit a form by clicking a gwt button

Hello. I am trying to make the browser's password manager remember the input from the ajax form generated with gwt. My idea is to use a hidden standard static html form on the page, and let the browser use that one. However, now I have to make the form submit the data upon clicking my custom gwt login button. I can get the form elemen...

gwt-maven-plugin appends "-linux" when getting gwt-dev artifact.

Hello, I've been trying to get the gwt-maven-plugin to work for me. Hopefully someone can help me. I'm using gwt-maven-plugin 1.2 and trying to get it to work with gwt 2.1.0.M3. We have a nexus repo at work and I've put the latest gwt jars there. The plugin fails when trying to download the gwt-dev jar. The gwt-dev jar is located at 2...

In GWT, how do I get a keypress?

I'm making a game and would like to know how I get a keypress event. All the examples I have seen are using textboxes to register a key handler but I don't think I need to do that. I just want to get key events for up,down,left,right to move a character. ...

uibinder element get with jquery selector fail on chrome/safari

i have uibinder html element like below <g:HTMLPanel> <div class='thumbnailWrapper'> <ul> <li> <a href='#'><img src='41546-140.jpg' /></a> <div class='caption'> <p class='captionInside'>testing javascript</p> </div> </li> <div class='clear'>...

How to open GWT page from another GWT page?

Hello! I created a login page in GWT using widgets and RPC. After succesful login, i want to display another page that also uses GWT widgets (i will use Google Chart Tools Library 1.1). I'm using GWT plugin for Eclipse that creates some folders when starting new projects(server,client....). How to display second GWT page from the first o...

GWT MVP Example

Does anyone know a good production scale open source project written with GWT and the MVP pattern. I am flip flopping on a few approaches to design and wanted to see if I could find a project that tackled similar issues. ...