jQuery UI integration in Wicket 1.5.x, Wicket 6.x & Wicket7.x
- jQuery UI
wicket-jquery-ui
- Calendar
wicket-jquery-ui-calendar
- Plugins
wicket-jquery-ui-plugins
- Kendo UI
wicket-kendo-ui
In order to get started using this API, you may download appropriate jar(s) or set a maven dependency.
If you are not using maven, you need to download the core jar here: http://central.maven.org/maven2/com/googlecode/wicket-jquery-ui/
You may also download other jars as required (ie: wicket-kendo-ui
).
Once done, just include the jar(s) in your project's build path.
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui</artifactId>
<version>7.0.0</version> <!-- or 1.5.11, 6.20.0 -->
</dependency>
If the version you specified is snapshot, you might define this repository:
<repositories>
<repository>
<id>sonatype-snapshots</id>
<name>Sonatype Snapshots Repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
wicket-jquery-ui | Wicket | jQuery UI |
---|---|---|
7.0.0 | 7.0.0 | 1.11.4 |
7.0.0-M6 | 7.0.0-M6 | 1.11.4 |
7.0.0-M5 | 7.0.0-M5 | 1.11.2 |
6.20.0 | 6.20.0 | 1.11.4 |
6.19.0 | 6.19.0 | 1.11.2 |
6.18.0 | 6.18.0 | 1.11.2 |
6.17.0 | 6.17.0 | 1.11.1 |
6.16.0 | 6.16.0 | 1.11.0 |
6.15.0 | 6.15.0 | 1.10.4 |
6.14.0 | 6.14.0 | 1.10.4 |
6.13.1 | 6.13.0 | 1.10.4 |
6.13.0 | 6.13.0 | 1.10.3 |
6.12.0 | 6.12.0 | 1.10.3 |
6.11.0 | 6.11.0 | 1.10.3 |
6.10.0 | 6.10.0 | 1.10.3 |
6.9.1 | 6.9.0 | 1.10.3 |
6.9.0 | 6.9.0 | 1.10.3 |
6.8.1 | 6.8.0 | 1.10.3 |
6.7.0 | 6.7.0 | 1.10.2 |
1.5.11 | 1.5.11 | 1.11.0 |
1.5.10 | 1.5.10 | 1.10.2 |
wicket-kendo-ui | Wicket | Kendo UI |
---|---|---|
7.0.0 | 7.0.0 | 2015.2.624 (ASFv2) |
7.0.0-M6 | 7.0.0-M6 | 2015.1.318 (ASFv2) |
7.0.0-M5 | 7.0.0-M5 | 2014.3.1119 (ASFv2) |
6.20.0 | 6.20.0 | 2015.1.318 (ASFv2) |
6.19.0 | 6.19.0 | 2014.3.1119 (ASFv2) |
6.18.0 | 6.18.0 | 2014.2.716 (ASFv2) |
6.17.0 | 6.17.0 | 2014.2.716 (ASFv2) |
6.16.0 | 6.16.0 | 2014.1.416 (ASFv2) |
6.15.0 | 6.15.0 | 2014.1.416 (ASFv2) |
6.14.0 | 6.14.0 | 2013.3.1119 (GPLv3) |
6.13.1 | 6.13.0 | 2013.3.1119 (GPLv3) |
6.13.0 | 6.13.0 | 2013.3.1119 (GPLv3) |
6.12.0 | 6.12.0 | 2013.1.319 (GPLv3) |
6.11.0 | 6.11.0 | 2013.1.319 (GPLv3) |
6.10.0 | 6.10.0 | 2013.1.319 (GPLv3) |
6.9.1 | 6.9.0 | 2013.1.319 (GPLv3) |
6.9.0 | 6.9.0 | 2013.1.319 (GPLv3) |
6.8.1 | 6.8.0 | 2013.1.319 (GPLv3) |
6.7.0 | 6.7.0 | 2012.3.1114 (GPLv3) |
1.5.11 | 1.5.11 | 2014.1.416 (ASFv2) |
1.5.10 | 1.5.10 | 2012.3.1114 (GPLv3) |
To use wicket-jquery-ui with a standard theme, just add the corresponding theme dependency to your webapp pom
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui-theme-uilightness</artifactId>
<version>7.0.0</version>
</dependency>
Please follow the instruction on How to change resource references
To use wicket-kendo-ui with a standard theme, just add the corresponding theme dependency to your webapp pom
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-kendo-ui-theme-default</artifactId>
<version>7.0.0</version>
</dependency>
Please follow the instruction on How to change resource references
Look at the samples provided in the demo site to get started with the code...
http://www.7thweb.net/wicket-jquery-ui