Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 GWTQuery into an existing Vaadin Project?

share|improve this question

2 Answers

up vote 1 down vote accepted

1.- If you are using maven add these lines to your pom.xml:

<dependency>
 <groupId>com.googlecode.gwtquery</groupId>
 <artifactId>gwtquery</artifactId>
 <version>1.2.0</version>
 <scope>provided</scope>
</dependency>

Otherwise download gwtquery-1.2.0.jar from the project site and include it in your classpath

2.- Add this line to your_application.gwt.xml file:

<inherits name='com.google.gwt.query.Query'/>

3.- Import statically methods from the GQuery class

import static com.google.gwt.query.client.GQuery.*;

4.- Use it to enhance your dom or widgets

$("css_selector").css("width", "100%");
$("css_selector", my_widget).hide();

5.- Be aware that you cannot use jquery plugins, but you can use the core api of jquery (with some differences). There are many gquery plugins though.

share|improve this answer
oh yes!! i use maven too. So its there no possibility to use jquery plugins like this : datatables.net for example?? – trouble Dec 5 '12 at 16:35
1  
You would need to wrap then in jsni code import the jquery js files. It would not use gquery and get the benefit of gwt optimization. – SSR Dec 5 '12 at 17:19
@trouble: you cannot use jquery plugins with gquery, gquery is an entire implementation of the jquery api in java, so those methods aren't available in js. I'm working on gquery and gwt-exporter to export those methods and many other hacks to support jquery plugins, take a look to gquery.org/wiki/JsQuery – Manolo Dec 5 '12 at 21:35
@SachinShekharR: be aware that you cannot copy and paste js fragments without reviewing carefully that code. i.e: you have to redefine window, document with $wnd, $doc. Anyway, to import a jquery plugin you have to import jquery as well and prolly it could not be embedded in jsni specially if you use the new gwt closure optimization. – Manolo Dec 5 '12 at 21:39
@trouble: CellTable and DataGrid (gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable) in GWT are very convenient, you should consider them as the alternative to datatables.net – Manolo Dec 5 '12 at 21:45
show 3 more comments

Same as you would for any other GWT project:

  1. Place the GWTQuery JAR under a folder on your project's path (it is not necessary to locate it under WEB-INF/lib, as it is not required during runtime).
  2. Include it in the build path for your project (e.g. in eclipse - right click the JAR file and select Build Path > Add To Build Path).
  3. Add a corresponding entry in the module xml:

    <inherits name="com.google.gwt.query.Query" />
    

Be sure to run the GWT compiler before running in production mode.

Further Reading:
Organizing Projects on the Google Developers' GWT docs.

share|improve this answer
Don't forget the inherits statement. – Colin Alworth Dec 5 '12 at 16:52
oh sure sure, thanks @ColinAlworth. – Eliran Malka Dec 5 '12 at 18:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.