Example usage for org.apache.wicket.extensions.ajax.markup.html IndicatingAjaxLink subclass-usage

List of usage examples for org.apache.wicket.extensions.ajax.markup.html IndicatingAjaxLink subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.ajax.markup.html IndicatingAjaxLink subclass-usage.

Usage

From source file ca.travelagency.components.formdetail.CancelLink.java

public class CancelLink extends IndicatingAjaxLink<Void> {
    private static final long serialVersionUID = 1L;
    private AjaxLinkCallback ajaxLinkCallback;

    public CancelLink(String id, AjaxLinkCallback ajaxLinkCallback) {
        super(id);

From source file gr.abiss.calipso.wicket.hlpcls.ExpandCustomAttributesLink.java

public class ExpandCustomAttributesLink extends IndicatingAjaxLink implements Serializable {

    private static final long serialVersionUID = 1L;

    /**
     * Please make proper use of logging, see http://www.owasp.org/index.php/Category:Logging_and_Auditing_Vulnerability

From source file nl.mpi.lamus.web.components.AutoDisablingAjaxLink.java

/**
 * Extension of IndicatingAjaxLink which
 * discards any call once there is an active request running.
 * This prevents multiple requests to be triggered by
 * accidentally clicking the link more than once.
 * @author guisil

From source file org.apache.directory.fortress.web.control.SecureIndicatingAjaxLink.java

/**
 * ...
 *
 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
 * @version $Rev$
 */

From source file org.apache.syncope.client.console.wicket.ajax.markup.html.ClearIndicatingAjaxLink.java

public abstract class ClearIndicatingAjaxLink<T> extends IndicatingAjaxLink<T> {

    private static final long serialVersionUID = 7913625094362339643L;

    private final PageReference pageRef;

From source file org.apache.syncope.client.console.wicket.markup.html.form.IndicatingOnConfirmAjaxLink.java

public abstract class IndicatingOnConfirmAjaxLink<T> extends IndicatingAjaxLink<T> {

    private static final long serialVersionUID = 2228670850922265663L;

    private final String msg;

From source file org.apache.syncope.console.wicket.ajax.markup.html.ClearIndicatingAjaxLink.java

public abstract class ClearIndicatingAjaxLink<T> extends IndicatingAjaxLink<T> {

    private static final long serialVersionUID = 7913625094362339643L;

    private final PageReference pageRef;

From source file org.cast.cwm.data.component.DisablingIndicatingAjaxLink.java

/**
 * An instance of {@link IndicatingAjaxLink} that can disable components during
 * the AJAX request.
 * 
 * @author jbrookover
 *

From source file org.syncope.console.wicket.ajax.markup.html.IndicatingDeleteOnConfirmAjaxLink.java

public abstract class IndicatingDeleteOnConfirmAjaxLink<T> extends IndicatingAjaxLink<T> {

    public IndicatingDeleteOnConfirmAjaxLink(final String id, final IModel<T> model) {

        super(id, model);
    }