Example usage for org.apache.wicket.markup.repeater RepeatingView subclass-usage

List of usage examples for org.apache.wicket.markup.repeater RepeatingView subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.repeater RepeatingView subclass-usage.

Usage

From source file au.org.theark.core.web.component.listeditor.AbstractListEditor.java

public abstract class AbstractListEditor<T> extends RepeatingView implements IFormModelUpdateListener {

    private static final long serialVersionUID = -5555167696920984309L;
    List<T> items;

    public AbstractListEditor(String id) {

From source file com.aplombee.QuickViewBase.java

/**
 * base class for {@link QuickView}
 *
 * @author Vineet Semwal
 */
public abstract class QuickViewBase<T> extends RepeatingView implements IQuickView {

From source file com.chitek.wicket.listeditor.ListEditor.java

@SuppressWarnings("serial")
public abstract class ListEditor<T> extends RepeatingView implements IFormModelUpdateListener {
    protected List<T> items;
    private boolean modelRendered = false;

    public ListEditor(String id, IModel<List<T>> model) {

From source file com.cubeia.network.shared.web.wicket.list.ListEditor.java

/**
 * This class makes it possible to have a dynamic list of items in a form.
 *
 * Stolen from: http://wicketinaction.com/2008/10/building-a-listeditor-form-component/
 *
 * @param <T>

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

/**
 * @author jcompagner
 *
 */
public class PageContributorRepeatingView extends RepeatingView implements IRepeatingView {
    private final IProviderStylePropertyChanges stylePropertyChangeProvider;

From source file de.tudarmstadt.ukp.csniper.webapp.support.wicket.RepeatingEditor.java

/**
 * Adapted from http://wicketinaction.com/2008/10/building-a-listeditor-form-component/
 * 
 * @author Erik-Ln Do Dinh
 */
public abstract class RepeatingEditor<T> extends RepeatingView implements IFormModelUpdateListener {

From source file org.apache.isis.viewer.wicket.ui.components.layout.bs3.col.RepeatingViewWithDynamicallyVisibleContent.java

public class RepeatingViewWithDynamicallyVisibleContent extends RepeatingView
        implements HasDynamicallyVisibleContent {

    public RepeatingViewWithDynamicallyVisibleContent(final String id) {
        super(id);
    }

From source file org.artifactory.common.wicket.component.panel.sidemenu.MenuPanel.java

/**
 * @author Yoav Aharoni
 */
public class MenuPanel extends RepeatingView {
    public MenuPanel(String id, Class<? extends Page> pageClass) {
        super(id);

From source file org.cast.cwm.components.DelimitedRepeatingView.java

/**
 * A RepeatingView that introduces some plain-text markup between children.
 * By default the separator is simply a space, but it can be set to any string.
 */
public class DelimitedRepeatingView extends RepeatingView {

From source file org.hippoecm.frontend.plugins.reviewedactions.RequestsView.java

public class RequestsView extends RepeatingView {

    static final Logger log = LoggerFactory.getLogger(RequestsView.class);

    private final IPluginContext context;