jQuery UI & Kendo UI integration in Wicket 7.x, Wicket 8.x & Wicket9.x
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>9.11.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-kendo-ui</artifactId>
<version>9.11.0</version>
</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 |
---|---|---|
9.11.0 | 9.11.0 | 1.13.2 |
9.9.1 | 9.9.1 | 1.12.1 |
9.9.0 | 9.9.1 | 1.12.1 |
9.8.0 | 9.8.0 | 1.12.1 |
9.7.0 | 9.7.0 | 1.12.1 |
9.6.0 | 9.6.0 | 1.12.1 |
9.5.0 | 9.5.0 | 1.12.1 |
9.3.0 | 9.3.0 | 1.12.1 |
9.2.1 | 9.2.0 | 1.12.1 |
9.2.0 | 9.2.0 | 1.12.1 |
9.2.0 | 9.2.0 | 1.12.1 |
9.1.0 | 9.1.0 | 1.12.1 |
9.0.0 | 9.0.0 | 1.12.1 |
wicket-kendo-ui | Wicket | Kendo UI |
---|---|---|
9.11.0 | 9.11.0 | 2022.3.913 (ASFv2) |
9.9.1 | 9.9.1 | 2022.2.510 (ASFv2) |
9.8.0 | 9.7.0 | 2021.3.1207 (ASFv2) |
9.7.0 | 9.7.0 | 2021.3.1207 (ASFv2) |
9.6.0 | 9.6.0 | 2021.3.914 (ASFv2) |
9.5.0 | 9.5.0 | 2021.3.914 (ASFv2) |
9.3.1 | 9.3.1 | 2021.1.119 (ASFv2) |
9.3.0 | 9.3.0 | 2021.1.119 (ASFv2) |
9.2.1 | 9.2.1 | 2021.1.119 (ASFv2) |
9.2.0 | 9.2.0 | 2020.3.915 (ASFv2) |
9.1.0 | 9.1.0 | 2020.3.915 (ASFv2) |
9.0.0 | 9.0.0 | 2020.3.915 (ASFv2) |
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>9.11.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>9.11.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