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 br.com.oak.wicket.ui.behavior.ComponentVisualErrorBehavior.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 ca.travelagency.components.behaviors.AjaxOnBlurBehavior.java

public class AjaxOnBlurBehavior extends AjaxFormComponentUpdatingBehavior {
    private static final long serialVersionUID = 1L;

    public AjaxOnBlurBehavior() {
        super("onblur");
    }

From source file com.locke.library.web.behaviors.update.AjaxFormComponentUpdateBroadcastingBehavior.java

public class AjaxFormComponentUpdateBroadcastingBehavior extends AjaxFormComponentUpdatingBehavior {

    private static final long serialVersionUID = 5628920028467218468L;

    public AjaxFormComponentUpdateBroadcastingBehavior() {
        this("onchange");

From source file com.romeikat.datamessie.core.base.ui.behavior.ModelUpdatingBehavior.java

public class ModelUpdatingBehavior extends AjaxFormComponentUpdatingBehavior {

    private static final long serialVersionUID = 1L;

    public ModelUpdatingBehavior() {
        super("change");

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

/**
 * Base class for all the form component updating behaviors.
 * This one makes sure that onAjaxError() is called in the browser if there is an error.
 * It will disable it self if the webclient is not in ajax mode or if the component is in design mode. 
 * 
 * @author jcompagner

From source file com.swordlord.gozer.components.wicket.utils.ErrorBehaviour.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 com.sybase365.mobiliser.web.common.components.ComponentVisualErrorBehavior.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 eu.esdihumboldt.hale.server.webapp.components.FieldValidatingBehavior.java

/**
 * Changes the CSS class of a form component depending on if it is valid and
 * updates an additional component (e.g. a {@link FieldMessage}). The CSS class
 * can be customized by overriding {@link #getCssClass(boolean)}
 * 
 * @author Simon Templer

From source file gr.interamerican.wicket.behavior.EmptyOnSelectionChangedBehavior.java

/**
 * This behavior can be added to a {@link DropDownChoice} component just to ensure that
 * the model of the component is updated when the onchange event is triggered.
 */
public class EmptyOnSelectionChangedBehavior extends AjaxFormComponentUpdatingBehavior {

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

/**
 * Behavior,that on Component's update action, performs a 
 * specified {@link CallbackAction}.
 */
public class CallbackActionBehavior extends AjaxFormComponentUpdatingBehavior {