Example usage for org.apache.wicket.markup.html.list ListView subclass-usage

List of usage examples for org.apache.wicket.markup.html.list ListView subclass-usage

Introduction

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

Usage

From source file com.doculibre.constellio.wicket.components.locale.MultiLocaleComponentHolder.java

@SuppressWarnings("serial")
public abstract class MultiLocaleComponentHolder extends ListView {

    private IModel labelledEntityModel;
    private String labelKey;
    private String propertyName;

From source file com.evolveum.midpoint.web.component.message.FeedbackListView.java

/**
 * @author lazyman
 */
public class FeedbackListView extends ListView<FeedbackMessage> {
    private boolean isTempPanel;

From source file com.evolveum.midpoint.web.component.message2.FeedbackListView.java

/**
 * @author lazyman
 */
public class FeedbackListView extends ListView<FeedbackMessage> {

    public FeedbackListView(String id, Component component) {

From source file com.github.ilmoeuro.hackmikkeli2016.ui.HmListView.java

public class HmListView<T> extends ListView<T> {
    private static final long serialVersionUID = 0l;

    @FunctionalInterface
    public interface ListViewPopulator<T> extends Serializable {
        void populateItem(ListItem<T> item);

From source file com.norconex.commons.wicket.markup.html.list.OddEvenListView.java

/**
 * Alternate list item CCS class for each row.  Toggles between "even" and
 * "odd".
 * @author Pascal Essiembre
 * @param <T> The underlying model object
 */

From source file com.servoy.j2db.server.headlessclient.dataui.ServoyListView.java

/**
 * @author gboros
 */
public abstract class ServoyListView<T> extends ListView<T> implements IPageable {
    private static final long serialVersionUID = 1L;

From source file com.swordlord.gozer.components.wicket.ActionBaseListView.java

/**
 * TODO JavaDoc for ActionBaseListView.java
 * 
 * @author LordEidi
 * 
 */

From source file de.alpharogroup.wicket.components.form.ChoicesListView.java

/**
 * A base ListView that provides conveniences for rendering its items using an IChoiceRenderer.
 * 
 * This class is inspired from fiftyfive.wicket.core project. Some changes with the generic types
 * was done.
 * 

From source file de.alpharogroup.wicket.components.menu.suckerfish.SubMenuListView.java

/**
 * The Class SubMenuListView.
 * 
 * @author Asterios Raptis
 */
public final class SubMenuListView extends ListView<MenuItem> {

From source file de.elatexam.editor.components.panels.AlternatingListView.java

/**
 * Listview that adds css class "odd" and "even" to each item according to it's
 * index.
 * 
 * @author Steffen Dienst
 *