Example usage for org.apache.wicket.extensions.markup.html.form.palette Palette subclass-usage

List of usage examples for org.apache.wicket.extensions.markup.html.form.palette Palette subclass-usage

Introduction

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

Usage

From source file au.org.theark.core.web.component.palette.ArkPalette.java

/**
 * Implementation of Wicket Palette class, overriding the default CSS
 * 
 * @author cellis
 */
public class ArkPalette<T> extends Palette<T> {

From source file com.googlecode.wicket.jquery.ui.form.palette.Palette.java

/**
 * Provides a Palette, with jQuery UI icon-buttons
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 */

From source file com.swordlord.gozer.ui.modal.ModalPalette.java

/**
 * @param <T>
 */
@SuppressWarnings("serial")
public class ModalPalette<T> extends Palette<T> {
    /* (non-Javadoc)

From source file gr.abiss.calipso.wicket.components.formfields.pallete.Palette.java

/**
 * @author manos
 * 
 */
public class Palette extends org.apache.wicket.extensions.markup.html.form.palette.Palette {

From source file gr.interamerican.wicket.bo2.markup.html.form.PaletteForEntry.java

/**
 * {@link Palette} extension for {@link TranslatableEntry} objects.
 * 
 * This implementation will print the translation for the language 
 * of the current session.
 * 

From source file gr.interamerican.wicket.bo2.markup.html.form.PalleteForEntriesOwner.java

/**
 * {@link Palette} extension for {@link TranslatableEntryOwner} objects.
 * 
 * This implementation will print the translation for the language 
 * of the current session.
 * 

From source file org.apache.syncope.client.console.wicket.markup.html.form.NonI18nPalette.java

public class NonI18nPalette<T> extends Palette<T> {

    private static final long serialVersionUID = 2659070187837941889L;

    public NonI18nPalette(final String id, final IModel<? extends Collection<T>> model,
            final IModel<? extends Collection<? extends T>> choicesModel,

From source file org.apache.syncope.console.wicket.markup.html.form.NonI18nPalette.java

public class NonI18nPalette<T> extends Palette<T> {

    private static final long serialVersionUID = 2659070187837941889L;

    public NonI18nPalette(final String id, final IModel<? extends Collection<? extends T>> choicesModel,
            final IChoiceRenderer<T> choiceRenderer, final int rows, final boolean allowOrder) {

From source file org.geoserver.security.web.auth.AuthenticationChainPalette.java

/**
 * Palette widget for the authentication chain, allowing for setting active providers and defining
 * chain order.
 * 
 * @author Justin Deoliveira, OpenGeo
 *

From source file org.geoserver.security.web.auth.AuthFilterChainPalette.java

public class AuthFilterChainPalette extends Palette<String> {

    AvailableAuthFilterNamesModel choicesModel;

    public AuthFilterChainPalette(String id) {
        this(id, null, new AvailableAuthFilterNamesModel());