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.sakaiproject.profile2.tool.components.FocusOnLoadBehaviour.java

public class FocusOnLoadBehaviour extends Behavior {

    private static final long serialVersionUID = 1L;

    private Component component;

From source file org.smallmind.wicket.behavior.CssBehavior.java

public class CssBehavior extends Behavior {

    private Map<String, Object> substitutionMap;
    private Class scopeClass;
    private String fileName;

From source file org.smallmind.wicket.behavior.freemarker.FreeMarkerJavaScriptBehavior.java

public class FreeMarkerJavaScriptBehavior extends Behavior {

    private Map<String, Object> rootModel;
    private Class<?> scopeClass;
    private String fileName;

From source file org.smallmind.wicket.behavior.JavaScriptBehavior.java

public class JavaScriptBehavior extends Behavior {

    private Map<String, Object> substitutionMap;
    private Class scopeClass;
    private String fileName;

From source file org.smallmind.wicket.behavior.JavaScriptNamespaceBehavior.java

public class JavaScriptNamespaceBehavior extends Behavior {

    private String namespace;

    public JavaScriptNamespaceBehavior() {

From source file org.wicketchartist.behavior.ChartistBehavior.java

/**
 * The Class ChartistBehavior.
 * 
 * @author mielimonka
 */
public class ChartistBehavior extends Behavior {

From source file org.wicketstuff.calendarviews.AddCssClassBehavior.java

/**
 * A behavior for adding a class attribute of <tt>ICategorizedEvent</tt> events to a component, even
 * if there is already a class on the tag. If there is, this behavior will add a space between the
 * two classes.
 * 
 * @author Jeremy Thomerson

From source file org.wicketstuff.dashboard.web.DashboardResourcesBehavior.java

/**
 * Provides required resources (JS, CSS) in a head.
 * Should be attached to a component which require these resources
 * @author Decebal Suiu
 */
public class DashboardResourcesBehavior extends Behavior {

From source file org.wicketstuff.dashboard.widgets.ofchart.SWFObject.java

/**
 * http://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html
 */
public class SWFObject extends Behavior {

    private static final long serialVersionUID = 1L;

From source file org.wicketstuff.datetime.extensions.yui.calendar.DatePicker.java

/**
 * Pops up a YUI calendar component so that the user can select a date. On selection, the date is
 * set in the component it is coupled to, after which the popup is closed again. This behavior can
 * only be used with components that either implement {@link ITextFormatProvider} or that use
 * {@link DateConverter} configured with an instance of {@link SimpleDateFormat} (like Wicket's
 * default configuration has).<br/>