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 org.sakaiproject.scorm.ui.player.behaviors.SjaxCall.java

/**
 * This class is right at the center of all the action. It provides a wrapper for Synchronous
 * Javascript and XML (SJAX) calls from the client's browser directly into the Java SCORM API. 
 * That is, by constructing an SjaxCall and passing it the name of an API method and the number
 * of arguments in that method, and then adding this behavior to a Wicket Component, you will 
 * expose a Javascript method with that same name to the browser. The associated javascript file

From source file org.wicketstuff.console.examples.groovy.QuickActionClickBehavior.java

final class QuickActionClickBehavior extends AjaxEventBehavior {
    private static final long serialVersionUID = 1L;
    private final ScriptEnginePanel enginePanel;
    private final IModel<ScriptTemplate> model;

    QuickActionClickBehavior(final String event, final ScriptEnginePanel enginePanel,

From source file org.wicketstuff.datatable_autocomplete.panel.AJAXAutoCompleteBehavior.java

/**
 * @author mocleiri
 * 
 *         Originally the intent was to use this to allow multiple fields to drive search for
 *         results.
 * 

From source file org.wicketstuff.dojo11.DojoEventBehavior.java

/**
 * An Dojo behavior that is attached to a certain client-side (usually
 * javascript) event, such as onClick, onChange, onKeyDown, etc.
 * <p>
 * Example:
 * 

From source file org.wicketstuff.stateless.behaviors.StatelessAjaxEventBehavior.java

/**
 * Stateless version of AjaxEventBehavior
 * 
 * @author Andrea Del Bene
 *
 */