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

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

Introduction

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

Usage

From source file org.artifactory.common.wicket.behavior.RenderJavaScript.java

/**
 * @author Yoav Aharoni
 */
public class RenderJavaScript extends Behavior {
    private IModel javascript;

From source file org.artifactory.common.wicket.behavior.template.TemplateBehavior.java

/**
 * @author Yoav Aharoni
 */
public class TemplateBehavior extends Behavior {
    private transient ResourcePackage resourcePackage;
    private BaseTemplateStrategy templateStrategy;

From source file org.artifactory.common.wicket.contributor.ResourcePackage.java

/**
 * Improved version of HeaderContributor: <ul> <li>Naming conventions for default file name.</li> <li>Supports
 * interpolated templates.</li> <li>May hold more than one resource.</li> </ul>
 *
 * @author Yoav Aharoni
 */

From source file org.artifactory.webapp.wicket.page.browse.home.RememberPageBehavior.java

/**
 * @author Yoav Aharoni
 */
public class RememberPageBehavior extends Behavior {
    static final String COOKIE_NAME = "art-page";
    private final boolean keepParameters;

From source file org.cast.cwm.components.AttributeRemover.java

public class AttributeRemover extends Behavior {

    private String[] atts;

    private static final long serialVersionUID = 1L;

From source file org.cdlflex.charts.highcharts.features.basic.ChartBehavior.java

/**
 * This behavior takes in an {@link Options} object containing the configuration of a chart and calls the proper
 * javascript to display the chart in the component to which this behavior is added.
 *
 * @author Tom Hombergs (tom.hombergs@gmail.com)
 */

From source file org.cdlflex.ui.ajax.behavior.data.repeater.table.ClickAwareBehavior.java

/**
 * AJAX Behavior for a DataTable that enables rows to be clicked.
 *
 * @param <T> Model object type
 */
public abstract class ClickAwareBehavior<T> extends Behavior implements IRowCallback<T> {

From source file org.cdlflex.ui.ajax.behavior.data.repeater.table.SelectionAwareBehavior.java

/**
 * AJAX Behavior for a DataTable that enables rows to be clicked and selected.
 * 
 * @param <T> Model object type
 */
public abstract class SelectionAwareBehavior<T> extends Behavior implements IRowCallback<T> {

From source file org.cdlflex.ui.behavior.FrontendDependencyBehavior.java

/**
 * Behavior that adds all added ResourceReferences as HeaderItems to the IHeaderResponse. It distinguishes between
 * JavaScriptResourceReference (added as JavaScriptHeaderItem) and CssResourceReference (added as
 * CssReferenceHeaderItem).
 *
 * <p>

From source file org.dcm4chee.wizard.common.behavior.FocusOnLoadBehavior.java

/**
 * @author Franz Willer <franz.willer@gmail.com>
 */

public class FocusOnLoadBehavior extends Behavior {