Skip to content

Latest commit

History

100 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Wicket-Select2

This project provides Apache Wicket components that leverage Select2 JavaScript library to build select boxes that provide Ajax choice filtering, custom rendering, etc.

Notable Branches

The 1.x branch contains a version of wicket-select2 compatible with Wicket 1.5.x

Installation

<dependency>
<groupId>com.vaynberg.wicket.select2</groupId>
<artifactId>wicket-select2</artifactId>
<version>2.2.3</version>
</dependency>

You may want to check for the latest released version using Maven Search

Configuration

Wicket-Select2 provides the Select2ApplicationSettings class that can be used to configure application-global settings such as:

  • Whether or not internal version of JQuery library will be included any time a Wicket-Select2 components is used
  • Whether or not default CSS resource will be included any time a Wicket-Select2 component is used
  • And other similar options

These settings allow the application to customize the behavior of Wicket-Select2 components without creating application-specific subclasses for all of them.

Example:

publicclassMyApplicationextendsWebApplication {
publicvoidinit() {
super.init();
ApplicationSettings.get().setIncludeJquery(false);
}
}

Integration

The main interface between your application and Wicket-Select2 components is the ChoiceProvider:

publicabstractclassChoiceProvider<T> implementsIDetachable {
/** * Queries application for choices that match the search {@code term} and adds them to the {@code response} */publicabstractvoidquery(Stringterm, intpage, Response<T> response);
/** * Converts the specified choice to Json. */publicabstractvoidtoJson(Tchoice, JSONWriterwriter) throwsJSONException;
/** * Converts a list of choice ids back into application's choice objects. When the choice provider is attached to a */publicabstractCollection<T> toChoices(Collection<String> ids);
}

Once you implement this interface your application can communicate with the Select2 components. Then its simply a matter of adding any one of the provided components to your page and configuring various Select2 options through the component. For example a single-select component can be added and configured like this:

// add the single-select componentSelect2Choice<Country> country = newSelect2Choice<Country>(
"country",	newPropertyModel(this, "country"), newCountriesProvider());
form.add(country);
// configure various Select2 optionscountry.getSettings().setMinimumInputLength(1);

The two main Select2 components are the Select2Choice which provides single-selection and Select2MultiChoice which provides multi-selection.

See the wicket-select2-examples submodule for code examples.

License

Copyright 2012 Igor Vaynberg

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Provides integration between Apache Wicket and Select2

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages