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 ro.nextreports.server.web.common.behavior.DefaultFocusBehavior.java

/**
 * @author Decebal Suiu
 * @see http://apache-wicket.1842946.n4.nabble.com/Default-Focus-Behavior-td1868610.html
 */
public class DefaultFocusBehavior extends Behavior {

From source file ro.nextreports.server.web.common.behavior.ErrorHighlightBehavior.java

/**
 * @author Decebal Suiu
 */
public class ErrorHighlightBehavior extends Behavior {

    @Override

From source file ro.nextreports.server.web.common.behavior.ValidationMessageBehavior.java

/**
 * @author Decebal Suiu
 */
public class ValidationMessageBehavior extends Behavior {

    private static final long serialVersionUID = 1L;

From source file ro.nextreports.server.web.dashboard.chart.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 sf.wicklet.ext.behaviors.ajax.OnReadyBehavior.java

/**
 * Add an OnDomReadyHeaderItem.
 */
public class OnReadyBehavior extends Behavior {
    private static final long serialVersionUID = 1L;
    private final CharSequence javascript;

From source file sf.wicklet.ext.behaviors.border.DecorBehavior.java

/**
 * This is much like BorderBehavior but skip all the markup crap.
 * As BorderBehavior, the border is re-rendered on each ajax rendering of the component
 * this behavior is attached to and create the border repeatedly. In such case,
 * use a wrapper component.
 * @see IAjaxRegionMarkupIdProvider.

From source file sf.wicklet.ext.ui.accordion.AccordionBehavior.java

/**
 * A simple accordion that hide/show the content when its header is clicked.
 * If CSS class for header is specified, any decendent of the accordion element with the given class is
 * considered as a header. Otherwise the first and every other child is consider as a header.
 * The element that follows the header is the content.
 */

From source file sf.wicklet.gwt.server.behavior.JavascriptContentHeaderBehavior.java

public class JavascriptContentHeaderBehavior extends Behavior {
    private static final long serialVersionUID = 1L;
    private final JavaScriptContentHeaderItem item;

    public JavascriptContentHeaderBehavior(final CharSequence javascript, final String id, final String condition) {
        this(new JavaScriptContentHeaderItem(javascript, id, condition));

From source file sf.wicklet.gwt.site.server.behavior.UserInfoBehavior.java

public class UserInfoBehavior extends Behavior {
    private static final long serialVersionUID = 1L;
    private final UserInfo info;

    public UserInfoBehavior(final UserInfo info) {
        this.info = info;

From source file sf.wicklet.gwt.site.server.behavior.UserInfosBehavior.java

public class UserInfosBehavior extends Behavior {
    private static final long serialVersionUID = 1L;
    private final List<UserInfo> infos;

    public UserInfosBehavior(final List<UserInfo> infos) {
        this.infos = infos;