gwtquery icon indicating copy to clipboard operation
gwtquery copied to clipboard

A jQuery clone for GWT, and much more.

Results 52 gwtquery issues
Sort by recently updated
recently updated
newest added

I think this is a pretty [well know problem with JQuery](http://stackoverflow.com/a/23744774) but I didn't see any open issues when I searched "promises", so apologies if you guys are already aware...

I use the following code: ``` $(contentList).find(".mytouch") .on("click", new Function() { public boolean f(Event ev) { int index = $(this).index(); GWT.log("div index: "+index); return true; } }); ``` $(this).index() always...

It is also strange that the following works: ``` $(contentList).find(".mytouch") .on("tap", new Function() { public boolean f(Event ev) { GWT.log("div tapped"); return true; } }); ``` and the following does...

To bind events like click with GQuery you can do something like: ``` @UiField Element myButton; ... $(myButton).on("click", new Function() { @Override public void f() { // event is triggered...

I am not sure if this issue is with the HighCharts min js, the GWT compiler or gQuery It works with the src version of HighCharts. Below is the code....

I'd like to access the response object within the failure callback. In case I want to create my own Exception out of the statusCode and statusText there are no arguments...

Getting an error while using GQuery for ChosenListBox library: ``` java com.google.gwt.dev.shell.HostedModeException: Something other than a boolean was returned from JSNI method '@com.google.gwt.query.client.js.JsUtils::hasProperty(Lcom/google/gwt/core/client/JavaScriptObject;Ljava/lang/String;)': JS value of type null, expected boolean...

Hi, i use this instruction to slide an HorizontalScrollPanel scrollPanel.getHorizontalScrollbar().setHorizontalScrollPosition(scrollPanel.getHorizontalScrollbar().getHorizontalScrollPosition()-200); I'd like to animate this slide with GQWERY but: GQuery scrollPanelElem = jquerySelector.getScrollPanel(); scrollPanelElem.animate("opacity:'0'", 500); //it works GWT.log("int "+scrollPanelElem.scrollLeft()); //it...

Uploading files on Android native browser is not working with GQuery. I tried this: ``` // Use gQuery utils to create a FormData object instead // of JSNI JavaScriptObject form...

A strict project without an `` statements on Query but with an `` on RequestFactory will fail to compile. Since `com.google.web.bindery.requestfactory.shared.gquery.PromiseRF` lives in the RequestFactory package and extends `com.google.gwt.query.client.plugins.deferred.Deferred.DeferredPromiseImpl`, when...