Example usage for org.apache.wicket.ajax.markup.html IAjaxLink interface-usage

List of usage examples for org.apache.wicket.ajax.markup.html IAjaxLink interface-usage

Introduction

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

Usage

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

/**
 * An incremental Ajaxian link to a page of a PageableListView. Assuming your list view navigation
 * looks like
 * 
 * <pre>
 * 

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

/**
 * An Ajax version of a link to a page of a PageableListView.
 * 
 * @since 1.2
 * 
 * @author Martijn Dashorst

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

/**
 * This class represents an ajax link, who's callback will be ignored if
 * the page is not the last the user accessed
 * 
 * @author gboros
 */

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

/**
 * A {@link SubmitLink} that can be configured to use ajax.
 * s
 * @author jcompagner
 */
public abstract class ServoySubmitLink extends SubmitLink implements IAjaxLink {

From source file net.dontdrinkandroot.wicket.bootstrap.component.button.AjaxButtonLink.java

public abstract class AjaxButtonLink<T> extends AbstractButtonLink<T> implements IAjaxLink {

    public AjaxButtonLink(String id) {

        super(id);
    }

From source file org.artifactory.common.wicket.component.links.TitledAjaxLink.java

/**
 * AjaxButton can get it's text from resourceKey or from markup
 *
 * @author Yoav Aharoni
 */
public abstract class TitledAjaxLink extends BaseTitledLink implements IAjaxLink, ILinkListener {

From source file org.artifactory.common.wicket.component.links.TitledAjaxSubmitLink.java

/**
 * @author Yoav Aharoni
 */
public abstract class TitledAjaxSubmitLink extends TitledSubmitLink implements IAjaxLink {
    protected TitledAjaxSubmitLink(String id) {
        super(id);

From source file org.hippoecm.addon.workflow.DualAjaxLink.java

public abstract class DualAjaxLink extends AbstractLink implements IAjaxLink {

    private static final long serialVersionUID = 1L;

    public DualAjaxLink(final String id) {
        this(id, null);

From source file org.sakaiproject.profile2.tool.components.AjaxExternalLink.java

/**
 * This is a simple link component for rendering external links but also provides an AjaxRequestTarget.
 * <p>
 * The url will be set into the href attribute of the tag.
 * If you need the link to open in a new window, use jQuery.
 * <code>

From source file org.wicketstuff.stateless.components.StatelessAjaxFallbackLink.java

/**
 * Just like {@link AjaxFallbackLink}, but stateless.
 * 
 * @author jfk
 */
public abstract class StatelessAjaxFallbackLink<T> extends StatelessLink<T> implements IAjaxLink {