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.wicketstuff.gchart.ChartLibLoaderBehavior.java

/**
 * Behavior to bundle the Google chart lib loading and package declaration for
 * multiple charts on one page. All needed packages are merged in a set, so the
 * loading is done only once as the
 * <a href="https://developers.google.com/chart/interactive/docs/basic_multiple_charts">docs
 * request</a>.

From source file org.wicketstuff.gchart.GoogleChartBehavior.java

/**
 *
 * @author Dieter Tremel
 */
public class GoogleChartBehavior extends Behavior {

From source file org.wicketstuff.jqplot.behavior.JqPlotBehavior.java

/**
 * 
 * @author inaiat
 */
public class JqPlotBehavior extends Behavior {

From source file org.wicketstuff.js.ext.ExtExamplesResourcesBehaviour.java

public class ExtExamplesResourcesBehaviour extends Behavior {

    private static final CssResourceReference EXT_STYLESHEET = new CssResourceReference(ExtBundle.class,
            ExtBundle.EXT_ALL_STYLE);
    private static final CssResourceReference EXAMPLE_STYLESHEET = new CssResourceReference(
            ExtExamplesResourcesBehaviour.class, "examples/examples.css");

From source file org.wicketstuff.js.ext.ExtObservable.java

@ExtClass("Ext.util.Observable")
public class ExtObservable extends Behavior implements IExtObservable {
    private static final long serialVersionUID = 1L;

    private String objectId = null;
    Component component = null;

From source file org.wicketstuff.js.ext.util.ExtThemeBehavior.java

/**
 * Adds the default ExtJs theme CSS to the header.
 */
public class ExtThemeBehavior extends Behavior {

    private static final String LOCALE_PATH_PREFIX = "src/locale/ext-lang-";

From source file org.wicketstuff.jwicket.ui.tooltip.JQueryUiTooltipContent.java

/**
 * Use this {@link Behavior} to place text/markup in the HTML attribute <code>data-tooltip</code> of
 * a component. This attribute is used by {@link JQueryUiTooltip} to obtain the content of tooltips.
 * <p/>
 * If you specify a {@link Component} as the content provider, the <code>data-tooltip</code>
 * attribute will be set by a JavaScript function.

From source file org.wicketstuff.minis.behavior.apanel.ConstraintBehavior.java

/**
 * Contains information about how a component should be displayed in a layout. A component should
 * have only one constraint.
 * <p/>
 * This class violates the idea of {@link org.apache.wicket.behavior.IBehavior}.
 * </p>

From source file org.wicketstuff.minis.behavior.CompositeBehavior.java

/**
 * Represents a composite behavior allowing the user to attach multiple behaviors to a component at
 * once.
 * 
 * @author David Bernard
 * @author Erik Brakkee

From source file org.wicketstuff.minis.behavior.DependentModelBehavior.java

/**
 * Behavior that uses the value of the dependent model. The dependent model is detached when the
 * behavior is detached.
 * 
 * @param <D>
 *            the type of the model this behavior depends on