Example usage for org.apache.wicket.ajax AjaxEventBehavior subclass-usage

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

Introduction

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

Usage

From source file com.aplombee.navigator.AjaxScrollEventBehaviorBase.java

/**
 *  base ajax scroll event behavior which are extended by {@link AjaxPageScrollEventBehavior} and {@link AjaxComponentScrollEventBehavior}
 *
 *@author Vineet Semwal
 * .
 */

From source file com.eltiland.ui.common.components.navigator.ELTAjaxPagingNavigationBehavior.java

/**
 * Ajax behavior for the paging navigation links. This behavior can only have one parent: the link
 * it is attached to.
 *
 * @since 1.2
 *

From source file com.norconex.commons.wicket.behaviors.OnClickBehavior.java

/**
 * Add an "onclick" javascript event listener on a wicket componente.
 * @author Pascal Essiembre
 */
@SuppressWarnings("nls")
public abstract class OnClickBehavior extends AjaxEventBehavior {

From source file com.servoy.extensions.beans.dbtreeview.MouseEventBehavior.java

/**
 * Wicket mouse event behavior.
 * @author gboros
 *
 */
public class MouseEventBehavior extends AjaxEventBehavior {

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

/**
 * Base class for all the ajax 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 net.dontdrinkandroot.wicket.behavior.ajax.AbstractOnClickBehavior.java

public abstract class AbstractOnClickBehavior extends AjaxEventBehavior {

    public AbstractOnClickBehavior() {

        super("onclick");
    }

From source file net.dontdrinkandroot.wicket.behavior.ajax.KeyEventBehavior.java

public abstract class KeyEventBehavior extends AjaxEventBehavior {

    public KeyEventBehavior() {

        super("keyup");
    }

From source file org.apache.openmeetings.web.user.rooms.RoomEnterBehavior.java

public class RoomEnterBehavior extends AjaxEventBehavior {
    private static final long serialVersionUID = 1L;
    protected final Long roomId;

    public RoomEnterBehavior(Long roomId) {
        super("click");

From source file org.apache.syncope.client.console.commons.CloseOnESCBehavior.java

public class CloseOnESCBehavior extends AjaxEventBehavior {

    private static final long serialVersionUID = 5826308247642534260L;

    public CloseOnESCBehavior(final String event) {
        super(event);

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

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

    private static final long serialVersionUID = -5144403874783384604L;