Example usage for org.apache.wicket.markup.html.form IFormModelUpdateListener interface-usage

List of usage examples for org.apache.wicket.markup.html.form IFormModelUpdateListener interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form IFormModelUpdateListener interface-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.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.norconex.jefmon.settings.panels.AbstractSettingsPanel.java

/**
 * @author Pascal Essiembre
 */
public abstract class AbstractSettingsPanel extends JEFMonPanel implements IFormModelUpdateListener {

    private static final long serialVersionUID = -6984964094746204191L;

From source file de.elatexam.editor.components.panels.tasks.correctionmode.CorrectionModePanel.java

/**
 * @author Steffen Dienst
 *
 */
public class CorrectionModePanel extends Panel implements IFormModelUpdateListener {
    enum CMode {

From source file de.elatexam.editor.components.panels.tasks.taskblockspecifics.TaskblockSpecificConfigPanel.java

/**
 * Panel that may render each of {@link McConfig}, {@link ClozeConfig}, {@link MappingConfig}.
 * {@link McConfig} may have one of {@link Regular} or {@link Different} set, where {@link Different} has two point values
 * whereas everyone else has exactly one.
 * @author Steffen Dienst
 *

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 nl.knaw.dans.dccd.web.search.years.YearSearchPanel.java

public class YearSearchPanel extends Panel implements IFormModelUpdateListener {
    private static final long serialVersionUID = 8847280650556371741L;
    YearSearchData data;

    public YearSearchPanel(String id, IModel model) {
        super(id, model);

From source file org.devproof.portal.core.module.right.panel.RightGridPanel.java

/**
 * Lists the rights on an edit panel
 *
 * @author Carsten Hufe
 */
public class RightGridPanel extends Panel implements IFormModelUpdateListener {

From source file org.devproof.portal.core.module.tag.component.TagField.java

/**
 * Ajax autocompletion field for tags
 *
 * @author Carsten Hufe
 */
public class TagField<T extends AbstractTag<?>> extends AutoCompleteTextField<String>