List of usage examples for org.apache.wicket.ajax.markup.html AjaxLink subclass-usage
From source file com.googlecode.wickedcharts.showcase.links.UpdateChartLink.java
public class UpdateChartLink extends AjaxLink<Void> { private static final long serialVersionUID = 1L; private final Chart chart;
From source file com.googlecode.wicket.jquery.ui.markup.html.link.AjaxLink.java
/**
* Provides a Kendo UI button based on a built-in {@code AjaxLink}
*
* @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.AjaxLink.java
/**
* Provides a Kendo UI button based on a built-in {@code AjaxLink}
*
* @param <T> the model object type
* @author Sebastien Briquet - sebfz1
* @since 6.19.0
From source file com.locke.library.web.generics.AjaxLink.java
public abstract class AjaxLink extends org.apache.wicket.ajax.markup.html.AjaxLink<Void> { private static final long serialVersionUID = -3911431966626003760L; public AjaxLink(String id) { super(id);
From source file com.lyndir.lhunath.opal.wayward.component.AjaxLabelLink.java
/**
* <h2>{@link AjaxLabelLink}<br> <sub>An {@link AjaxLink} with the body of a {@link Label}.</sub></h2>
*
* <p> <i>Mar 12, 2010</i> </p>
*
* @author lhunath
From source file com.lyndir.lhunath.opal.wayward.component.LabelAjaxLink.java
/**
* <h2>{@link LabelAjaxLink}<br> <sub>A {@link Link} with the body of a {@link Label}.</sub></h2>
*
* <p> <i>Mar 11, 2010</i> </p>
*
* @author lhunath
From source file com.romeikat.datamessie.core.base.ui.component.AjaxConfirmationLink.java
public abstract class AjaxConfirmationLink<T> extends AjaxLink<T> { private static final long serialVersionUID = 1L; private final String text;
From source file com.socialsite.message.DeleteMsgLink.java
public class DeleteMsgLink<T extends Message> extends AjaxLink<T> { /** spring dao to handle message object */ @SpringBean(name = "messageDao") private MessageDao<Message> messageDao;
From source file com.socialsite.profile.EditLink.java
/**
* Allows the owner to edit the profile info
*
* @author Ananth
*
*/
From source file com.userweave.components.ToolTipAjaxLink.java
/**
* Extension to an ajax link to add a tooltip (i.e. appends
* 'title' to the tag), if the link is disabled.
*
* @author opr
*