Example usage for org.apache.wicket.markup.html.form DropDownChoice subclass-usage

List of usage examples for org.apache.wicket.markup.html.form DropDownChoice subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form DropDownChoice subclass-usage.

Usage

From source file abid.password.wicket.fields.PasswordTypeChoice.java

public class PasswordTypeChoice extends DropDownChoice<PasswordTypeChoice.PasswordType> {

    private static final long serialVersionUID = 1L;

    public enum PasswordType {
        SIMPLE, EXTENDED, SHIFT, TIME_LOCK, EXTENDED_TIME_LOCK;

From source file abid.password.wicket.fields.TimeParameterChoice.java

public class TimeParameterChoice extends DropDownChoice<TimeParameter> {

    private static final long serialVersionUID = 1L;

    public TimeParameterChoice(final String id, final IModel<TimeParameter> model, List<TimeParameter> list) {
        super(id);

From source file ca.travelagency.components.fields.GenericDropDownChoice.java

public class GenericDropDownChoice<T extends DaoEntity> extends DropDownChoice<T> {
    private static final long serialVersionUID = 1L;

    @SpringBean
    private DaoSupport<T> daoSupport;

From source file com.francetelecom.clara.cloud.presentation.tools.EnumDropDownChoice.java

/**
 * Created by IntelliJ IDEA.
 * User: Thomas Escalle - tawe8231
 * Entity : FT/OLNC/RD/MAPS/MEP/MSE
 * Date: 19/10/11
 */

From source file com.googlecode.wicket.jquery.ui.form.dropdown.DropDownChoice.java

/**
 * Provides a JQuery UI Selectmenu widget (DropDownChoice). It extends built-in {@link org.apache.wicket.markup.html.form.DropDownChoice}
 *
 * @author Patrick Davids - Patrick1701
 *
 * @param <T> the model object type

From source file com.googlecode.wicket.jquery.ui.kendo.dropdown.DropDownList.java

/**
 * Provides a Kendo UI DropDownList widget. It extends built-in {@link DropDownChoice}<br/>
 *
 * @author Sebastien Briquet - sebfz1
 *
 * @param <T> the model object type

From source file com.googlecode.wicket.kendo.ui.form.dropdown.DropDownList.java

/**
 * Provides a Kendo UI DropDownList widget. It extends built-in {@link DropDownChoice}<br/>
 *
 * @author Sebastien Briquet - sebfz1
 *
 * @param <T> the model object type

From source file com.myamamoto.wicket.misc.enums.RockPaperScissorsDropDownChoice.java

public class RockPaperScissorsDropDownChoice extends DropDownChoice<RockPaperScissors> {

    public RockPaperScissorsDropDownChoice(String id) {
        super(id, Arrays.asList(RockPaperScissors.values()), new EnumChoiceRenderer<RockPaperScissors>());
    }

From source file com.norconex.commons.wicket.markup.html.form.UpdatingDropDownChoice.java

/**
 * A regular drop down choice, which commits its changes upon encountering
 * an "onchange" event. 
 * @author Pascal Essiembre
 *
 * @param <T> The underlying model object type

From source file com.norconex.commons.wicket.markup.html.i18n.LocaleDropDownChoice.java

/**
 * This drop-down form component will display and allow to chose {@link Locale}
 * instances in a user-friendly way.
 * @author Pascal Essiembre
 */
public class LocaleDropDownChoice extends DropDownChoice<Locale> {