Example usage for org.apache.wicket.ajax IAjaxIndicatorAware interface-usage

List of usage examples for org.apache.wicket.ajax IAjaxIndicatorAware interface-usage

Introduction

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

Usage

From source file de.tudarmstadt.ukp.csniper.webapp.support.wicket.ExtendedIndicatingAjaxButton.java

/**
 * A variant of the {@link AjaxButton} that displays a busy indicator while the ajax request is in
 * progress.<br>
 * As opposed to {@link IndicatingAjaxButton} (which appends the busy indicator to the end),
 * IndicatingAjaxButton injects the busy indicator into the button.
 * 

From source file eu.uqasar.web.components.IndicatingAjaxAutoCompleteTextField.java

/**
 *
 *
 * @param <T>
 */
public abstract class IndicatingAjaxAutoCompleteTextField<T> extends AutoCompleteTextField<T>

From source file gr.abiss.calipso.wicket.IndicatingDropDownChoice.java

/**
 * wraps an ajax drop down so that the ajax "spinner" image shows
 */
public class IndicatingDropDownChoice extends DropDownChoice implements IAjaxIndicatorAware {

    private final WicketAjaxIndicatorAppender indicatorAppender = new WicketAjaxIndicatorAppender();

From source file gr.interamerican.wicket.bo2.callbacks.OnEventActionBehavior.java

/**
 * Behavior that on an event,render the component that this handler is bound to.
 */
public class OnEventActionBehavior extends CallbackActionBehavior implements IAjaxIndicatorAware {
    /**
     * serial.

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 info.jtrac.wicket.IndicatingDropDownChoice.java

/**
 * wraps an ajax drop down so that the ajax "spinner" image shows
 */
public class IndicatingDropDownChoice extends DropDownChoice implements IAjaxIndicatorAware {

    private final WicketAjaxIndicatorAppender indicatorAppender = new WicketAjaxIndicatorAppender();

From source file it.av.es.web.BasePageSimple.java

/**
 * Base Page without user session. Contains some commons elements.
 * 
 * @author <a href='mailto:a.vincelli@gmail.com'>Alessandro Vincelli</a>
 */
public class BasePageSimple extends WebPage implements IAjaxIndicatorAware {

From source file main.java.info.jtrac.wicket.IndicatingDropDownChoice.java

/**
 * wraps an ajax drop down so that the ajax "spinner" image shows
 */
public class IndicatingDropDownChoice extends DropDownChoice implements IAjaxIndicatorAware {

    private final WicketAjaxIndicatorAppender indicatorAppender = new WicketAjaxIndicatorAppender();

From source file net.tirasa.jpasqlazure.web.pages.HomePage.java

@AuthorizeInstantiation(Roles.USER)
public class HomePage extends WebPage implements IAjaxIndicatorAware {

    /**
     * Logger.
     */

From source file nl.knaw.dans.dccd.common.web.AjaxIndicatingSubmitLink.java

public abstract class AjaxIndicatingSubmitLink extends AjaxSubmitLink implements IAjaxIndicatorAware {
    private static final long serialVersionUID = 1L;
    private final AjaxIndicatorAppender indicatorAppender = new AjaxIndicatorAppender();

    public AjaxIndicatingSubmitLink(String id) {
        super(id);