Example usage for org.apache.wicket.ajax.form AjaxFormChoiceComponentUpdatingBehavior subclass-usage

List of usage examples for org.apache.wicket.ajax.form AjaxFormChoiceComponentUpdatingBehavior subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.ajax.form AjaxFormChoiceComponentUpdatingBehavior subclass-usage.

Usage

From source file ontopoly.components.AjaxParentFormChoiceComponentUpdatingBehavior.java

/**
 * This is variant of AjaxFormChoiceComponentUpdatingBehavior that allows 
 * nested AjaxParentRadioChild and AjaxParentCheckChild instances to update 
 * the parent RadioGroup or CheckGroup. This is neccessary when any 
 * children of the group gets replaced using AJAX. This is done to work 
 * around a limitation of the AjaxFormChoiceComponentUpdatingBehavior 

From source file org.apache.syncope.client.console.wicket.ajax.form.IndicatorAjaxFormChoiceComponentUpdatingBehavior.java

/**
 * An {@link AjaxFormChoiceComponentUpdatingBehavior} not showin veil.
 */
public abstract class IndicatorAjaxFormChoiceComponentUpdatingBehavior
        extends AjaxFormChoiceComponentUpdatingBehavior implements IAjaxIndicatorAware {

From source file org.opensingular.form.wicket.behavior.AjaxUpdateChoiceBehavior.java

public final class AjaxUpdateChoiceBehavior extends AjaxFormChoiceComponentUpdatingBehavior {
    private final IAjaxUpdateListener listener;
    private final IModel<SInstance> model;

    public AjaxUpdateChoiceBehavior(IModel<SInstance> model, IAjaxUpdateListener listener) {
        this.listener = listener;

From source file org.opensingular.lib.wicket.util.behavior.FormChoiceAjaxUpdateBehavior.java

@SuppressWarnings({ "serial" })
public class FormChoiceAjaxUpdateBehavior extends AjaxFormChoiceComponentUpdatingBehavior
        implements IAjaxUpdateConfiguration<Component> {

    private IBiConsumer<AjaxRequestTarget, Component> onUpdate;
    private ITriConsumer<AjaxRequestTarget, Component, RuntimeException> onError = (t, c, e) -> WicketEventUtils