/gwt-jui

GwtJui is a JQueryUI Wrapper for Google Web Toolkit. The objective of this library is to provide easy access to the already existing JQueryUI Javascript library.

Primary LanguageJavaApache License 2.0Apache-2.0

GwtJui Build Status

GwtJui is a JQueryUI Wrapper for Google Web Toolkit. The objective of this library is to provide easy access to the already existing JQueryUI Javascript library.

You can look at the current Demo (In Progress)

Getting Started

GwtJui is broken down into 6 subprojects to allow you as the developer to choose the JQuery libraries required. The subprojects are as follows:

An example using GwtJui is to add the subproject dependecy or dependencies you require.

<dependency>
    <groupId>nz.co.doltech</groupId>
    <artifactId>gwt-jui-interactions</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>

<dependency>
    <groupId>nz.co.doltech</groupId>
    <artifactId>gwt-jui-themes</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>

Since all projects require the core module it is automatically inherited for you.

Now that you have the dependency in your project you can add them to your GWT module.

<!-- Standard use of Interactions -->
<inherits name="nz.co.doltech.gwtjui.interactions.JuiInteractions" />

or you can import the module with more extensive information for debugging.

<!-- Debugging of Interactions, providing non-minified js/css -->
<inherits name="nz.co.doltech.gwtjui.interactions.JuiInteractionsDebug" />

Note that the default Jui modules assume you have JQuery library already loaded, to make GwtJui load JQuery you can add the following module:

<!-- Loads JQuery for you -->
<inherits name="nz.co.doltech.gwtjui.core.JuiWithJQuery" />

<!-- Or, same thing for Debugging -->
<inherits name="nz.co.doltech.gwtjui.core.JuiDebugWithJQuery" />

now, perhaps you would also like to have a JQuery theme too, you can use them like so:

<inherits name="nz.co.doltech.gwtjui.themes.uilightness.UiLightness" />

Issues

If you find any issues please list them in the issue tracker and it will be looked into as soon as possible.

Contributing

TODO