kz.supershiny.web.wicket.components.ConfirmationLink.java Source code

Java tutorial

Introduction

Here is the source code for kz.supershiny.web.wicket.components.ConfirmationLink.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package kz.supershiny.web.wicket.components;

import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.attributes.AjaxCallListener;
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes;
import org.apache.wicket.ajax.markup.html.AjaxLink;

/**
 *
 * @author kilrwhle
 */
public class ConfirmationLink<T> extends AjaxLink<T> {

    private static final long serialVersionUID = 1L;
    private final String text;

    public ConfirmationLink(String id, String text) {
        super(id);
        this.text = text;
    }

    @Override
    protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
        super.updateAjaxAttributes(attributes);

        AjaxCallListener ajaxCallListener = new AjaxCallListener();
        ajaxCallListener.onPrecondition("return confirm('" + text + "');");
        attributes.getAjaxCallListeners().add(ajaxCallListener);
    }

    @Override
    public void onClick(AjaxRequestTarget target) {

    }
}