List of usage examples for org.apache.wicket.ajax.markup.html AjaxLink subclass-usage
From source file org.wicketstuff.security.components.markup.html.links.SecureAjaxLink.java
/**
* AjaxLink with visibility / clickability based on user rights. Requires render rights to be
* visible, and enable rights to be clickable.
*
* @author Olger Warnier
*/
From source file org.wicketstuff.urlfragment.BookmarkableAjaxLink.java
/**
* This is an {@link AjaxLink} which will set an URL fragment parameter in the browser.
* <p>
* You can provide a default parameter to the constructors so it will be set automatically during
* event handling. You can also set or remove parameters by yourself using
* {@link #setFragmentParameter(String, String)} or {@link #removeFragmentParameter(String)}.
From source file org.xaloon.wicket.component.custom.ConfirmationAjaxLink.java
/** * @author vytautas r. * @param <T> */ public abstract class ConfirmationAjaxLink<T> extends AjaxLink<T> {
From source file ro.fortsoft.wicket.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 ro.nextreports.server.web.common.misc.AjaxConfirmLink.java
/** * @author Decebal Suiu */ public abstract class AjaxConfirmLink<T> extends AjaxLink<T> { private static final long serialVersionUID = 1L;
From source file ro.nextreports.server.web.core.action.ActionAjaxLink.java
/** * @author Decebal Suiu */ public abstract class ActionAjaxLink extends AjaxLink<ActionContext> { public ActionAjaxLink(ActionContext actionContext) {
From source file sf.wicklet.ext.components.link.WixAjaxLink.java
public abstract class WixAjaxLink<T> extends AjaxLink<T> { private static final long serialVersionUID = 1L; private String href = "#"; public WixAjaxLink(final Object wid) {
From source file sk.lazyman.gizmo.component.AjaxButton.java
/** * @author lazyman */ public abstract class AjaxButton extends AjaxLink<String> { public AjaxButton(String id) {
From source file sk.lazyman.gizmo.component.data.NavigatorPageLink.java
/** * @author lazyman */ public abstract class NavigatorPageLink extends AjaxLink<String> { private final long pageNumber;
From source file sk.lazyman.gizmo.component.LabeledLink.java
/** * @author lazyman */ public abstract class LabeledLink extends AjaxLink<String> { private IModel<String> model;