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

0
votes
0answers
12 views

In-place editing with GwtQuery and Errai

I have this issue with making GwtQuery and Errai work. The way this code (should) work is that when alink is clicked it should trigger the GwtQuery plugin Enhance and make the anchor a textbox (for ...
0
votes
0answers
19 views

In-place editing with GwtQuery

How to I do in-place editing with GwtQuery? Are there any plugins available? Something similar to XEditable: http://vitalets.github.io/x-editable/demo.html Where there is Jquery-UI plugin for it. ...
0
votes
0answers
11 views

Why getDroppableData() always returns NULL?

I'm using DnD with multiple DragAndDropCellTable. In each table, i added a DropHandler and when i try to get the droppableData it returns null: myCellTable.addDropHandler (new Drop EventHandler () { ...
0
votes
0answers
23 views

How to drag&drop row from one CellTable to another using GWTquery?

I'm following the example about DragAndDropCellTable in GWTQuery example where the drop target is a CellList. What i need to do is Drag a CellTable row and Drop it in another CellTable. Is it ...
0
votes
1answer
9 views

How do you get event details in GWTQuery?

I'm trying to create a program where I need to fire events whenever the text in a text box is changed. Here's the code written for it: $("#text_box").change(new Function(){ public void f(){ ...
0
votes
0answers
9 views

Trouble sending queries from text box using GWTQuery

I am trying to send a search query to the server in GWT, but its returning an unusual error. Here's the code: $("#search_form").submit(new Function(){ public void f(){ ...
0
votes
1answer
28 views

Form submit event in GWT (and GQuery) is causing IncompatibleRemoteServiceException

A form submit event in GWT and GQuery is causing an IncompatibleRemoteServiceException. This project includes GQuery (GWT version of JQuery) which is used to call the form submit. Here's the code for ...
3
votes
1answer
31 views

GwtChosen not playing well with GWT LayoutPanel and RootLayoutPanel

I am using GwtChosen 1.1.0 and GwtQuery 1.3.3. It seems to play nice only with RootPanel widgets and not RootLayoutPanel widgets. Is being not usable with RootLayoutPanel a known limitation with ...
0
votes
1answer
90 views

Calling GWT Java function from JavaScript

I am a newcomer to GWT and JavaScript. There are similar question of this type I have tried to follow, but I keep failing. I have a GWT app, I need to call a Java function from Javascript( on the ...
0
votes
1answer
25 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
91 views

Use jquery inside GWT jsni

I am not able to use $("#"+profileId).offset().top from inside my gwt jsni function. I tried this $wnd.$("#"+profileId).offset().top but this is also not working. I feel i am missing syntax ...
1
vote
1answer
64 views

Is it possible to eliminate the need to hardcode in CSS and HTML with GQuery compile time selectors

I am developing a web app with GWT. Being a Java developer with no knowledge of HTML, CSS and javascript, I'd strongly prefer to code everything in Java instead of hardcoding anything in HTML and CSS. ...
0
votes
1answer
65 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 ...
2
votes
3answers
97 views

in GWT, How to add a row on top of header of celltable?

This is very interesting, how can we add a row on top of header of celltable in GWT? Ok, Say,GWT Header only support sorting, but i want to do other stuffs on each of the column as well (such filter, ...
1
vote
2answers
109 views

GWT Timer cancel not working

I am trying to write a code to differentiate between simgle and double clicks using GWT and GWTQuery. I got the idea here. So I translated it into GWT like this: (my app can't have global variables, ...
0
votes
1answer
94 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
63 views

GWT Query DropEvent: can I get the drop coordinates?

I'm using GWT and GWT Query plugin for my web application. I have a draggable image and a GWT Canvas wrapped in a Droppable. My code looks like this: final Canvas canvas = Canvas.createIfSupported(); ...
1
vote
2answers
96 views

Change Select value using GWT Uniform.js

I'm using uniform.js in my GWT app. I need to change the values of the select item diagrammatically. But, the widget seems does not get updated. I know this can be updated using $.uniform.update(); ...
0
votes
1answer
88 views

GWT listen to external custom javascript event

I'm working on a GWT application and I would like to make that app listen for external custom javascript events. Those events would be triggered from outside my module. Basically, just like what you ...
0
votes
1answer
60 views

Possible bug with GWT gwtquery .live() method

I'm trying to do the following: I want to add a specific handler for some links, denoted by a class. $("a.link_list").live("click", new ListLinkHandler()); I need .live() instead of .bind() ...
1
vote
1answer
98 views

How to use GWTQuery-UI

I am trying to unserstand how GWTQuery works, for that I am trying out a simple demo with the slider. As per the documentation at Google (the slider tab is on the bottom left), and using the class ...
0
votes
0answers
46 views

GWT timer throwing exception while in a standalone class

I am using GWTQuery to detect paste event on a textbox, then setting a small timer after which it is supposed to get the value pasted in it. Something like this: $("#paste").live("paste",new ...
2
votes
1answer
64 views

Defining common handler for click elements in GWTQuery

In my GWTQuery project, I have a situation where there are 4 custom drop-down menus. Whenever a user changes any of the current menu choice, an AJAX request is made with the values of the 4 menus (one ...
0
votes
0answers
113 views

Mousemove not working for GWT canvas element in IE9

I am trying to attach a mousemove handler to a Canvas element (visible as a left-pointing black arrow): Canvas canvas = Canvas.createIfSupported(); canvas.setStyleName("arrow_left"); ...
1
vote
1answer
66 views

GWTQuery live blur not working

The following code attaches a new element with every subsequent click on the 2nd div. With each adding, the focus is set to the added element, so that it is ready for blur methods (I am setting the ...
0
votes
1answer
76 views

GWTquery event listeners not working

I am trying to add a simple click listener to an element like this: $(".choice_span").bind(Event.ONMOUSEUP, new Function() { public boolean f(Event E) { ...
0
votes
1answer
58 views

Mimicking jQuery event.which in GWT

The GwtQuery documentation provides the following example as a starting point for fiddling with events: $("h1").bind(Event.ONMOUSEOVER | Event.ONMOUSEOUT, new Function() { public boolean f(Event e) ...
0
votes
1answer
52 views

No GWTquery function is working

I am trying to use GWTquery in my project. I have successfully added the jar file, added it to the class-path, imported all classes, but still nothing is working. Can anyone tell me what I am missing? ...
0
votes
0answers
57 views

GWT CSS syntax not working properly

In the GWT tutorial page here, it clearly says near the bottom of the page that the user is not restricted to the type safe declarations, he can use jQuery syntax also. I have a textbox defined in my ...
1
vote
1answer
78 views

Can't use GWTquery in GWT

I am trying to use GWTQuery in my GWT project. For that, i downloaded the jar file from the official source. Then I added it to the lib folder within the WEB-INF folder, and configured the build path ...
2
votes
2answers
155 views

Using GWTquery with GWT

Can anyone tell me how to use GWTquery along with GWT? The GWTquery tutorial page mainly deals with how to use jQuery, it doesn't much explain how to embed it. If, for example, I want to use it with ...
0
votes
4answers
105 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){ ...
0
votes
2answers
199 views

How to add GWTQuery to an existing Vaadin Project?

I am new to Vaadin and GWT but i'm an advanced javascript Programmer. Now im working on a Vaadin existing Project and want to use the great possibilities of jQuery into my Project... how can i add ...
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
195 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()); ...
3
votes
1answer
330 views

GWT Drag and Drop within tree and between tree grids

We're using GWT and We're required to create two drag and drop tree grids. Each tree contains parents and children (max two level for now). Here's what we need to be able to do: Use cases Drag a ...
1
vote
2answers
77 views

gwtquery--missing removeClass() method?

I'm using gwtquery to manipulate the pages, i found in jQuery i can use: $('body').removeClass().addClass(myClass); But seem gwtquery does not provide the same removeClass() method, it only has ...
0
votes
1answer
53 views

On mouse over surround element with additional elements without moving it

i need some pointers here because i don't really know what to look for. The project is in gwt and is using gwtquery. I have this page with some elements and when the mouse overs an element it changes ...
0
votes
1answer
61 views

gwt-query / jquery - option tag inline styling

I've been trying to style html option tags, unsuccessfully. The code I've issued is the following: String htmlString = <something inline styled>; $("#nombreFuenteLB > option[value^='" + ...
0
votes
1answer
112 views

gwt / gwt-query - make a transparent some inner areas inside a panel

I've been looking forward something that enables me to transparent some inner areas inside a panel but not the rest. Say, if I have a panel which dimensions are 500x300, I would like to transparent ...
0
votes
1answer
123 views

gwt-query: resize event

I was wondering if there is some kind of workaround for catching resize event completion on GWT-query. I've tryied to do it by $().resize() but it was no good. I've also thaught about catching ...
1
vote
1answer
608 views

GWT - Wrapping widgets written in jQuery

I want to use in GWT a menu widget (tutorial and code is here: http://tympanus.net/codrops/2010/07/16/slide-down-box-menu/) that has the javascript code written with jQuery. The jQuery code seems ...
0
votes
3answers
137 views

How to make HTML element focusable with GWTQuery

I am using GWTQuery for low level DOM programming. I have several div elements which need to receive focus so I want to make them focusable. Is there a way to make them focusable with GWTQuery? Or may ...
0
votes
1answer
125 views

GWT Query selector not working

GWT Query selector i.e. $("#id") not working inside callback function. However xyz.find("#id") works, where xyz -> Gquery variable. Is it that callback function doesn't support $ selector or is there ...
0
votes
1answer
134 views

jquery start dragging object when clicked on the other with gwtquery and drag and drop

In this post the question is asked how to initiate an immediate drag operation when another object is clicked. I have the same question but in the context of gwtquery and the draggable plugin. In ...
1
vote
1answer
81 views

Does GWTQuery support the CSS Selecter [attr*=“some_val”]?

I have been using GQuery for a while now. I recently came across some unexpected behaviour. I have 2 different scenarios: a) I want to select an element say <a ...
1
vote
2answers
138 views

Using gwtquery, how can we select elements with attributes having values containing more than one word?

Say I want to select an element such as <div class="my class">InnerHTML</div> While this may be done easily using CSS selectors with [class="my class"], gwtquery has a difference in the ...
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 ...
2
votes
1answer
335 views

Gwt-query doesn't work for my MVP.

I dived to the gwt world a few monthes ago and now am trying to use the gwt-query library. I followed this tutorial: http://code.google.com/p/gwtquery/wiki/GettingStarted Because I am working in ...

1 2