Example usage for org.apache.wicket.behavior AbstractAjaxBehavior subclass-usage

List of usage examples for org.apache.wicket.behavior AbstractAjaxBehavior subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.behavior AbstractAjaxBehavior subclass-usage.

Usage

From source file com.conwax.ajax.SimpleAjaxEventBehavior.java

public abstract class SimpleAjaxEventBehavior extends AbstractAjaxBehavior {

    private static final long serialVersionUID = 1L;

    private static final String DATA_AJAX_URL = "data-ajax-url";

From source file com.doculibre.constellio.wicket.components.links.AJAXDownload.java

/**
 * @author Sven Meier
 * @author Ernesto Reinaldo Barreiro (reiern70@gmail.com)
 */
@SuppressWarnings("serial")
public abstract class AJAXDownload extends AbstractAjaxBehavior {

From source file com.evolveum.midpoint.web.component.AbstractAjaxDownloadBehavior.java

public abstract class AbstractAjaxDownloadBehavior extends AbstractAjaxBehavior {

    private static final long serialVersionUID = 1L;
    private boolean addAntiCache;
    private String contentType = "text";
    private String fileName = null;

From source file com.evolveum.midpoint.web.component.AjaxDownloadBehaviorFromFile.java

public abstract class AjaxDownloadBehaviorFromFile extends AbstractAjaxBehavior {

    private static final Trace LOGGER = TraceManager.getTrace(AjaxDownloadBehaviorFromFile.class);

    private boolean addAntiCache;
    private String contentType = "text";

From source file com.evolveum.midpoint.web.component.AjaxDownloadBehaviorFromStream.java

public abstract class AjaxDownloadBehaviorFromStream extends AbstractAjaxBehavior {

    private boolean addAntiCache;
    private String contentType = "text";

    public AjaxDownloadBehaviorFromStream() {

From source file com.googlecode.wicket.jquery.core.behavior.AjaxCallbackBehavior.java

/**
 * Provides an ajax endpoint that sends a "text" response<br>
 * The default content type is "application/json" <br>
 * The default encoding is the current {@code Application}'s {@link RequestCycleSettings} 
 * 
 * @author Sebastien Briquet - sebfz1

From source file com.googlecode.wicket.jquery.core.behavior.ChoiceModelBehavior.java

/**
 * Provides the choice ajax loading behavior
 *
 * @author Sebastien Briquet - sebfz1
 *
 * @param <T> the model object type

From source file com.googlecode.wicket.jquery.ui.calendar.CalendarModelBehavior.java

/**
 * Provides the behavior that gets the {@link CalendarEvent}<code>s</code> from the {@link CalendarModel}
 *
 * @author Sebastien Briquet - sebfz1
 *
 */

From source file com.googlecode.wicket.kendo.ui.behavior.ChoiceModelBehavior.java

/**
 * Provides the choice ajax loading behavior
 *
 * @author Sebastien Briquet - sebfz1
 *
 * @param <T> the model object type

From source file com.googlecode.wicket.kendo.ui.datatable.DataProviderBehavior.java

/**
 * Provides the {@link DataTable} data source {@link AbstractAjaxBehavior}
 *
 * @param <T> the type of the model object
 * @author Sebastien Briquet - sebfz1
 */