In order to get started using this API, you may download appropriate jar(s) or set a maven dependency.
Download jar(s)
Using Maven
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui</artifactId>
<version>8.0.0-M3</version>
</dependency>
If the version you specified is 'snapshot', you may define this repository:
<repositories>
<repository>
<id>sonatype-snapshots</id>
<name>Sonatype Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Setting up the jQuery UI theme
Using standard themes
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>8.0.0-M3</version>
</dependency>
Using a custom theme
Setting up the Kendo UI theme
Using standard themes
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>8.0.0-M3</version>
</dependency>
Using a custom theme
You are now ready to use wicket-jquery-ui!
Look at the samples provided here to get started with the code...