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.
0
votes
1answer
27 views
Drag and drop in SplitLayoutPanel not working properly
I'm trying to drag row from cell table, to my other widget. To do this i created DragAndDropCellTable and DroppableWidget. While they were in same container it was working fine. But since i put them ...
0
votes
2answers
70 views
How do you use the $(document).ready(function) in GWTQuery?
I have been coding a project with GWTQuery but I can't find a GWTQuery equivalent of $(document).ready(function).
I tried doing a:
$(new Function(){ /* Function comes here */ });
and although ...
0
votes
1answer
66 views
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 <inherits ...
0
votes
1answer
102 views
How to get the value of a textbox adjoining a button with gwt query
I have a custom widget like this, it's basically a couple of text boxes and buttons along with them.
<g:VerticalPanel>
<b:Label>Lower Limit</b:Label>
<b:TextBox ...
1
vote
1answer
43 views
How to consume 3party json services in GWT
I'm looking for the best way in GWT to access a 3party json rest service and parse its response quickly. The rest service offers the callback parameter, and the example they gave us is using ...
0
votes
1answer
47 views
objects cannot be dragged - with dnd gwt query
I created the follow grid of label that i want thme to be draggable:
public static Grid setLabels (String [] str){
Label [] lbl = new Label [str.length];
Grid grid = new Grid(5,1);
...
0
votes
4answers
106 views
GwtQuery - fadeIn one after another
I want to add fade-in animation for couple of widgets one after another.
I reviewed the doc, but it only does first fade-in.
$(myWidget1).fadeIn(new Function(){
public boolean f(Event e){
...
2
votes
2answers
144 views
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 ...
0
votes
1answer
196 views
GWT: I am using jScrollPane with jquery, is it messing with my ClickHandlers?
I implemented the JScrollPane for a cleaner look inside my Page.
function scrollPane() {
$(".gwt-content").jScrollPane();
}
A custom Widget gets added:
$(".jspPane").append($(new Content());
...
1
vote
1answer
178 views
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
...
1
vote
1answer
214 views
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 = ...
0
votes
1answer
88 views
Gquery - live method, how to use it properly
I'm experiencing with Gquery and find something difficult to work with live() method. As far as I'm concerned, it is plenty useful when you want to define some behavior for "future" elements. for ...
0
votes
2answers
97 views
How to wrap an element as parent of a known element using GQuery
Say I have a div as:
<div id="myDiv"> </div>
I have a GQuery object which I got using
GQuery mydiv = GQuery.$("#myDiv");
Using this, I want to create a new parent which wraps this ...
0
votes
2answers
252 views
“Sticky” panel on a Gwt application
I have a GWT app that have a HorizontalPanel that span across the width of the page, that serves as the "top bar" of the app. However I want to make it "sticky" that is when the page content grows, ...
0
votes
1answer
39 views
Assigning ID to a widget using GQuery
I need to wrap a widget with an ID, so I used GQuery to do that, like so:
GQuery g = $(signupButton);
g.id("signupButton");
Now I need to get the instance of the actual Button or Widget using the ...
0
votes
0answers
352 views
Opacity FadeIn/FadeOut GWT Query Internet Explorer
i am using
$("div.content").fadeOut(300, new Function() {
public void f(Element e) {
absolutePanel.clear();
show(comp);
}
});
to hide/show content. It works fine in Chrome ...
1
vote
1answer
624 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 ...
3
votes
1answer
2k 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
votes
1answer
217 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
160 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
432 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 ...
6
votes
2answers
602 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) ...
0
votes
3answers
645 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 ...
1
vote
1answer
283 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 ...
3
votes
1answer
292 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 ...
9
votes
3answers
6k 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 ...
7
votes
3answers
2k 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 ...