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

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

Introduction

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

Usage

From source file gr.interamerican.wicket.components.CallbackActionBehaviorIndicatorAware.java

/**
 * Behavior with disabled the  Lazy Loader Indicator, 
 * that on Component's update action, 
 * performs a specific action {@link CallbackAction}
 */
public class CallbackActionBehaviorIndicatorAware extends AjaxFormComponentUpdatingBehavior

From source file net.databinder.components.AjaxOnKeyPausedUpdater.java

/**
 * Attaches itself to the onchange event for a TextField or TextArea, and enhances that
 * event to fire not just when focus changes but also when keyboard input pauses. This
 * is effected in JavaScript, with a timer that resets when the onkeyup event fires.
 * @author Nathan Hamblen
 *

From source file net.rrm.ehour.ui.common.component.ValidatingFormComponentAjaxBehavior.java

/**
 * Validate formcomponent without submitting the form
 */

public class ValidatingFormComponentAjaxBehavior extends AjaxFormComponentUpdatingBehavior {
    private static final long serialVersionUID = 5521068510893118073L;

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

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

From source file org.artifactory.common.wicket.behavior.OnKeyUpUpdatingBehavior.java

/**
 * An {@link org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior} that invoked on 'onkeyup' events. There is
 * a default throttling of 500 milliseconds.
 *
 * @author Yossi Shaul
 */

From source file org.dcm4chee.web.war.common.IndicatingAjaxFormComponentUpdatingBehavior.java

/**
 * @author Franz Willer <franz.willer@gmail.com>
 * @version $Revision: 15859 $ $Date: 2011-08-29 16:03:54 +0200 (Mo, 29 Aug 2011) $
 * @since May 22, 2015
 */
public abstract class IndicatingAjaxFormComponentUpdatingBehavior extends AjaxFormComponentUpdatingBehavior

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

public class AjaxUpdateInputBehavior extends AjaxFormComponentUpdatingBehavior {

    private final IAjaxUpdateListener listener;
    private final IModel<SInstance> model;
    private final boolean validateOnly;

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

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

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

From source file org.sakaiproject.profile2.tool.components.ComponentVisualErrorBehaviour.java

/**
 * Behavior that checks if a {@link FormComponent} is valid. Valid {@link FormComponent} objects get the CSS class
 * 'formcomponent valid' and invalid {@link FormComponent} objects get the CSS class 'formcomponent invalid'.
 *
 * See {@link AjaxFormComponentUpdatingBehavior} for more details over the parent class.
 *

From source file org.sakaiproject.sitestats.tool.wicket.components.dropdown.SakaiSpinningSelectOnChangeBehavior.java

/**
 * Adds the Sakai overlay spinner to the DropDownChoice
 * @author plukasew
 */
public abstract class SakaiSpinningSelectOnChangeBehavior extends AjaxFormComponentUpdatingBehavior {
    public SakaiSpinningSelectOnChangeBehavior() {