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

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

Introduction

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

Usage

From source file org.laughingpanda.kansanpankki.accounts.TransferLink.java

class TransferLink extends AjaxLink<Account> {
    private final IModel<Account> sourceAccountModel;
    private final Money amountToTransfer;

    public TransferLink(IModel<Account> targetAccountModel, IModel<Account> sourceAccountModel,
            Money amountToTransfer) {

From source file org.onexus.website.api.pages.browser.BrowserPageLink.java

public abstract class BrowserPageLink<T> extends AjaxLink<T> {

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

    }

From source file org.opensingular.lib.wicket.util.ajax.ActionAjaxLink.java

@SuppressWarnings({ "serial" })
public abstract class ActionAjaxLink<T> extends AjaxLink<T> {

    private final static Logger LOGGER = Logger.getLogger(ActionAjaxLink.class.getName());

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

From source file org.patientview.radar.web.components.ClearLink.java

public class ClearLink extends AjaxLink {
    private SortableDataProvider sortableProvider;
    private DataView dataView;
    private WebMarkupContainer container;

    public ClearLink(String s, SortableDataProvider sortableProvider, DataView dataView,

From source file org.patientview.radar.web.components.SortLink.java

/**
 * AjaxLink bound to a Data field - this will update the filter when user clicks and set the sort on the page
 */
public class SortLink extends AjaxLink {
    private static final String SORT_LINK_CLASS = "sortLink";
    private static final String SORT_ASC_CLASS = "sortAsc";

From source file org.sakaiproject.attendance.tool.util.ConfirmationLink.java

/**
 * ConfirmationLink is an extension of AjaxLink which provides a javascript pop up confirmint the user's action
 *
 * @author David Bauer [dbauer1 (at) udayton (dot) edu]
 */
public abstract class ConfirmationLink<T> extends AjaxLink<T> {

From source file org.wicketopia.domdrides.component.link.ajax.AjaxRemoveEntityLink.java

/**
 * An ajax-enabled link that removes an entity.
 *
 * @since 1.0
 */
public abstract class AjaxRemoveEntityLink<E extends Entity<I>, I extends Serializable> extends AjaxLink<E> {

From source file org.wicketopia.persistence.component.link.ajax.AjaxDeleteLink.java

public abstract class AjaxDeleteLink<T> extends AjaxLink<T> {
    //----------------------------------------------------------------------------------------------------------------------
    // Fields
    //----------------------------------------------------------------------------------------------------------------------

    private final PersistenceProvider persistenceProvider;

From source file org.wicketstuff.dashboard.web.util.AjaxConfirmLink.java

/**
 * @author Decebal Suiu
 */
public abstract class AjaxConfirmLink<T> extends AjaxLink<T> {

    private static final long serialVersionUID = 1L;

From source file org.wicketstuff.jquery.block.BlockingAjaxLink.java

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

    public static final ResourceReference BLOCK_JS = new PackageResourceReference(BlockingAjaxLink.class,
            "jquery.blockUI.js");