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

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

Introduction

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

Usage

From source file ch.qos.mistletoe.wicket.TreeExpansionLink.java

public class TreeExpansionLink extends AjaxFallbackLink<Object> {
    private static final long serialVersionUID = 1L;
    boolean expanded = true;

    static String EXPAND_GIF = "images/expand.gif";
    static String COLLAPSE_GIF = "images/collapse.gif";

From source file com.googlecode.wicket.jquery.ui.markup.html.link.AjaxFallbackLink.java

/**
 * Provides a Kendo UI button based on a built-in {@code AjaxFallbackLink}
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 * @since 6.19.0

From source file com.googlecode.wicket.kendo.ui.markup.html.link.AjaxFallbackLink.java

/**
 * Provides a Kendo UI button based on a built-in {@code AjaxFallbackLink}
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 * @since 6.19.0

From source file dk.teachus.frontend.components.BlockingAjaxLink.java

public abstract class BlockingAjaxLink<T> extends AjaxFallbackLink<T> {
    private static final long serialVersionUID = 1L;

    public BlockingAjaxLink(String id) {
        super(id);
    }

From source file net.tirasa.hct.editor.widgets.AjaxBreadCrumbLink.java

public abstract class AjaxBreadCrumbLink extends AjaxFallbackLink {

    private static final long serialVersionUID = 3879954144522675275L;

    /**
     * The bread crumb model.

From source file ontopoly.components.OntopolyImageLink.java

public abstract class OntopolyImageLink extends AjaxFallbackLink<Object> {

    protected String image;
    protected IModel<String> titleModel;

    public OntopolyImageLink(String id, String image) {

From source file org.cast.isi.component.EditDisableLink.java

/**
 * A simple link that can be searched for (and disabled).  Also adds
 * a class attribute if disabled.
 */
public abstract class EditDisableLink<T> extends AjaxFallbackLink<T> {

From source file org.cyclop.web.components.buttons.IconButton.java

/** @author Maciej Miklas */
public abstract class IconButton extends AjaxFallbackLink<Void> {
    private final static Logger LOG = LoggerFactory.getLogger(IconButton.class);
    private final String[] cssStates;
    private int stateIdx;

From source file org.cyclop.web.components.buttons.StateButton.java

/** @author Maciej Miklas */
public abstract class StateButton extends AjaxFallbackLink<Void> {

    private boolean pressed;
    private final String cssReleased;
    private final String cssPressed;

From source file org.dcm4chee.usr.ui.usermanagement.ChangePasswordLink.java

/**
 * @author Robert David <robert.david@agfa.com>
 * @version $Revision$ $Date$
 * @since Sept. 28, 2009
 */
public class ChangePasswordLink extends AjaxFallbackLink<Object> {