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.minis.behavior.HideWhenEmptyOrNullBehavior.java

/**
 * Hides a component if the component's model value is empty or null.
 */
public class HideWhenEmptyOrNullBehavior extends Behavior {

    private static final Behavior INSTANCE = new HideWhenEmptyOrNullBehavior();

From source file org.wicketstuff.minis.behavior.mootip.MootipBehaviour.java

/**
 * Mootip behavior, implements integration with this http://www.uhleeka.com/dev/mootips/
 * 
 * The component you add this behavior to will be the component which the tooltip appears for
 * 
 * @author nino.martinez @ jayway.dk

From source file org.wicketstuff.minis.behavior.prototip.PrototipBehaviour.java

/**
 * Prototip behavior
 * 
 * The component you add this behavior to will be the component which the tooltip appears for
 * 
 * note this does not work if you add the behavior to a panel

From source file org.wicketstuff.minis.behavior.reflection.ReflectionBehavior.java

/**
 * Behavior for adding reflections to an image. Uses reflection.js (v1.6), licensed under a MIT
 * license.
 * <p>
 * Add this behavior to your image to generate a reflection. You can change the height and opacity
 * of the reflection using the provided setters.

From source file org.wicketstuff.minis.behavior.spinner.Spinner.java

/**
 * This behavior is used to augment a {@link TextField} with spinning abilities.<br/>
 * For customization of the {@link Spinner} take a look at the {@link #configure(Properties)}
 * method.
 * 
 * @author Gerolf Seitz

From source file org.wicketstuff.minis.behavior.styleswitcher.StyleSwitcher.java

/**
 * StyleSwitcher
 * 
 * Adds a set of alternate stylesheet links to the header with title attributes. When used in
 * conjunction with {@link StyleSwitcherLink}, it easy to switch active stylesheets with the click
 * of a link.

From source file org.wicketstuff.minis.behavior.veil.VeilResources.java

/**
 * A behavior that includes all the necessary resources to use the veil on the client
 * 
 * @author ivaynberg
 */
public class VeilResources extends Behavior {

From source file org.wicketstuff.minis.reflection.ReflectionBehavior.java

/**
 * Behavior for adding reflections to an image. Uses reflection.js (v1.6),
 * licensed under a MIT license.
 * <p>
 * Add this behavior to your image to generate a reflection. You can change the
 * height and opacity of the reflection using the provided setters.

From source file org.wicketstuff.mootools.meiomask.behavior.MootoolsCoreBehavior.java

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

From source file org.wicketstuff.select2.Select2ResourcesBehavior.java

/**
 * Adds various resources needed by Select2 such as JavaScript and CSS. Which
 * resources are added is controlled by the {@link ApplicationSettings} object.
 * Minified versions of JavaScript resources will be used when the application
 * is configured in deployment mode.
 *