Tagged Questions

GwtQuery a.k.a. gQuery is a jQuery-like API written in GWT. It offers the possibility to use the jquery api in gwt projects.

learn more… | top users | synonyms

7
votes
2answers
937 views

How to begin working with GwtQuery?

I've dived into the GWT world a couple of months ago and find it quite interesting. I'm currently developing a web application which is to be used internally and so we need to resize the browser ...
6
votes
2answers
344 views

Minimize subqueries with IN queries on AppEngine (python)

Is there any clever way to avoid making a costly query with an IN clause in cases like the following one? I'm using Google App Engine to build a Facebook application and at some point I (obviously) ...
4
votes
2answers
2k views

Find an element by CSS selector in GWT

I'm trying to grab an arbitrary element using a CSS selector (eg. "#someId .className a") in GWT. I'm building a JS widget that can live on a 3rd party website and want to be able to interact with ...
3
votes
1answer
199 views

Problem in slideDown() functtion of Gquery

I want to show popupPanel when i click on slideDown button ,but at the start my popupPanel is hidden using popupPanel.getElement().setAttribute("style", "display:none"); but when i click ...
1
vote
1answer
208 views

Masking Date field in gwt

Is there is any way in GWT where date field can be masked with various date formats? http://digitalbush.com/projects/masked-input-plugin (in demo tab) I came across solutions where in formatting can ...
1
vote
1answer
414 views

Use jsoup or gquery for plain XML

I was recently wondering about a good library for XML manipulation in Java: A nice Java XML DOM utility Before re-inventing the wheel, porting jQuery to Java in jOOX, I checked out these libraries: ...
1
vote
1answer
230 views

HTML 5 canvas element with GWT Query

Is it possible to use GWT-Query to use the HTML 5 canvas? I searched and found libraries to create charts easily with jQuery but since my app is using GWT I'm a bit in trouble. This is what I found ...
0
votes
1answer
102 views

Using GQuery in GWT widgets

I am using GWT and developed the UI using the GWT controls like Label,TextBox etc.I want to access these controls using Gwt Query.I am able to access the simple HTML controls but not able to ...
0
votes
1answer
101 views

Configuring Gquery in gwt in netbeans

I am trying to create a GWT application which uses GQuery in Netbeans.I have referred to http://code.google.com/p/gwtquery/wiki/GettingStarted But when I am importing the package of GQuery in my ...
0
votes
2answers
119 views

Using GQuery in GWT widgets

I am using the GWT application widget library and want to validate the controls in the button click event.The code I am writing GQuery input = $(e).filter("input[type='password']").widgets(); but ...
0
votes
3answers
425 views

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