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.
Questions tagged [gquery]
38 questions
49
votes
5 answers
Is still GWT pertinent for new projects?
The question Why should I use jQuery instead of GWT? may be outdated (as its answers). And most of the other SO related questions may also be outdated nowadays. So, let's update the state of the art about GWT relevance for new projects.
GWT is more…

oHo
- 51,447
- 27
- 165
- 200
15
votes
5 answers
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 elements on the page. Searching through the JavaDocs…

etoleb
- 923
- 1
- 8
- 19
6
votes
2 answers
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) need to query the datastore to get all the entities…

abahgat
- 13,360
- 9
- 35
- 42
6
votes
3 answers
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 window, which can only be done by JSNI. After hitting…

Ittai
- 5,625
- 14
- 60
- 97
4
votes
1 answer
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 on slideDown button it slide down very fast
& my…

Tushar Ahirrao
- 12,669
- 17
- 64
- 96
3
votes
1 answer
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…

Lukas Eder
- 211,314
- 129
- 689
- 1,509
2
votes
1 answer
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 be applied on loosing the focus with Regex, which…

Jags
- 21
- 3
2
votes
1 answer
How to use projection properties along with equality filter in GQuery?
My gquery goes something like this :
SELECT Distinct Path,Value FROM Entity WHERE PID="chichi"
I get error as
GQL query error: Your Datastore does not have the composite index (developer-supplied) required for this query.
I know I am using…

mohd.gadi
- 495
- 1
- 7
- 15
2
votes
1 answer
GwtQuery best practice
What is the best way to build a large app (really large) with GwtQuery
use it with Gwt Mvp i.e. Activities / places ?
use it with Mvp4G or Gwtp like framework ?
use it alone ?
Any pointers shall be helpful

Gautam
- 1,030
- 13
- 37
2
votes
2 answers
How do I convert GWT Query to widget?
I just started working with GWT Widgets. I am familiar with jQuery and GWT Query is similar and hence I'm comfortable with it.
I need to make a custom widget in GWT which encompasses the functionality I made in GQuery.
I know that GWT widgets need…

kisalaya
- 101
- 3
2
votes
1 answer
JQueryUI for GWT
I have followed the guide for JQueryUI for GWT in Eclipse, but I get the error:
The type com.google.gwt.query.client.GQuery cannot be resolved. It is indirectly referenced from required .class files
I'm not quite sure if I'm doing everything…

Steven Morad
- 2,511
- 3
- 19
- 25
2
votes
1 answer
Gwt-query: get an Image from ImageData
I'm trying to accomplish this but I've got no clue about getting a GWT Image from a Canvas ImageData. I'm issuing this piece of code:
ImageData canvasImageData = canvas.getContext2d().getImageData(0, 0, 500, 500);
My purpose is to get the Image…
user743489
1
vote
1 answer
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 for…

code-gijoe
- 6,949
- 14
- 67
- 103
1
vote
1 answer
GWT Super Dev Mode doesn't work with GQuery
I used maven dependency to get GQuery lib:
com.googlecode.gwtquery
gwtquery
1.4.2
Added inheritance to project.gwt.xml file, namely:

Dragon
- 2,431
- 11
- 42
- 68
1
vote
1 answer
Can't compile GWT project with GWTQuery in Eclipse
I'm trying to start using GWTQuery in a GWT project.
I've created sample GWT project in Eclipse
Added gwtquery-1.3.2.jar
into war/WEB-INF/lib
Edited Myproject.gwt.xml (added )
When I compile the…

Artsiom
- 99
- 3
- 11