Skip to content

sebfz1/wicket-jquery-ui

Repository files navigation

wicket-jquery-ui

jQuery UI & Kendo UI integration in Wicket 7.x, Wicket 8.x & Wicket9.x
TravisCI

Getting started

In order to get started using this API, you may download appropriate jar(s) or set a maven dependency.

Download jar(s)

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.

Using Maven

<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>

Versions

wicket-jquery-uiWicketjQuery UI
9.11.09.11.01.13.2
9.9.19.9.11.12.1
9.9.09.9.11.12.1
9.8.09.8.01.12.1
9.7.09.7.01.12.1
9.6.09.6.01.12.1
9.5.09.5.01.12.1
9.3.09.3.01.12.1
9.2.19.2.01.12.1
9.2.09.2.01.12.1
9.2.09.2.01.12.1
9.1.09.1.01.12.1
9.0.09.0.01.12.1
wicket-kendo-uiWicketKendo UI
9.11.09.11.02022.3.913 (ASFv2)
9.9.19.9.12022.2.510 (ASFv2)
9.8.09.7.02021.3.1207 (ASFv2)
9.7.09.7.02021.3.1207 (ASFv2)
9.6.09.6.02021.3.914 (ASFv2)
9.5.09.5.02021.3.914 (ASFv2)
9.3.19.3.12021.1.119 (ASFv2)
9.3.09.3.02021.1.119 (ASFv2)
9.2.19.2.12021.1.119 (ASFv2)
9.2.09.2.02020.3.915 (ASFv2)
9.1.09.1.02020.3.915 (ASFv2)
9.0.09.0.02020.3.915 (ASFv2)

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>9.11.0</version>
</dependency>

Using a custom theme

Please follow the instruction on How to change resource references

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>9.11.0</version>
</dependency>

Using a custom theme

Please follow the instruction on How to change resource references

You are now ready to use wicket-jquery-ui!

Look at the samples provided in the demo site to get started with the code...
http://www.7thweb.net/wicket-jquery-ui