Questions tagged [gwtquery]

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.

gQuery offers a set of plugins to enhance your gwt projects, and it also allows to easily rewrite (port) jquery-code and jquery-plugins for gwt.

gQuery additionally's plenty of features like its Type safe system, its Ajax api, and its data-binding handling, which make that to consume 3party services were much easier than using RequestBuilder.

96 questions
0
votes
1 answer

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 only the area which left and top (relative to its…
user743489
0
votes
3 answers

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 some other way to do so.
Konstantin Solomatov
  • 10,252
  • 8
  • 58
  • 88
0
votes
1 answer

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 some other problem.
archangel
  • 93
  • 1
  • 1
  • 8
0
votes
1 answer

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 the reference post the new item to be dragged is…
Glenn
  • 1,996
  • 2
  • 24
  • 32
0
votes
1 answer

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 GQuery object, is that possible? Will the g.get(0)…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
2 answers

jQuery Accordion from $("div id=\"accordion\">

I am using GWTQuery and GWTQuery-UI, but I think it would work the same for JQuery-UI. How can I create an accordion without define the accordion in the HTML doc? e.g. $("
Beig
  • 403
  • 1
  • 4
  • 19
1 2 3 4 5 6
7