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 sk.drunkenpanda.leaflet.resources.LeafletResourcesBehavior.java

/**
 * Behavior adds all resources to component.
 * You don't need to add this to components, if you set {@link LeafletSettings#autoAppendResources() }
 * to {@code true}.
 * 
 * @author Jan Ferko 

From source file sk.lazyman.gizmo.component.VisibleEnableBehaviour.java

/**
 * @author lazyman
 */
public class VisibleEnableBehaviour extends Behavior {

    public boolean isVisible() {

From source file tg.adn.precord.core.web.behaviors.RequiredBehavior.java

/**
 *
 * @author cagecfi
 */
public class RequiredBehavior extends Behavior {

From source file wicket.contrib.input.events.InputBehavior.java

/**
 * Add this to your button, link whatever to create a shortcut key..
 * 
 * <strong>WARNING:this behavior uses a special script for calling
 * window.onload</strong>
 * 

From source file wicket.contrib.tinymce.TinyMceBehavior.java

/**
 * Renders a component (textarea) as WYSIWYG editor, using TinyMce.
 */
public class TinyMceBehavior extends Behavior {
    private static final long serialVersionUID = 3L;

From source file wicket.contrib.tinymce4.TinyMceBehavior.java

/**
 * Renders a component (textarea) as WYSIWYG editor, using TinyMce.
 */
public class TinyMceBehavior extends Behavior {
    private static final long serialVersionUID = 3L;

From source file wicketbox.component.theme.BasicTheme.java

/**
 * @author Sven Meier
 */
public class BasicTheme extends Behavior {
    private static final long serialVersionUID = 1L;

From source file wicketdnd.DragSource.java

/**
 * A source of drags.
 * 
 * @see #getTypes()
 * @see #onBeforeDrop(Component, Transfer)
 * @see #onAfterDrop(AjaxRequestTarget, Transfer)

From source file wicketdnd.IEBackgroundImageCacheFix.java

/**
 * Fix for caching of background images in IE.
 * <br>
 * IE 6 fails to cache images if they are used as CSS backgrounds. This
 * javascript enables caching by executing an IE proprietary command.
 * 

From source file wicketdnd.IECursorFix.java

/**
 * Fix for cursors in IE. <br>
 * IE resolves relative URLs in CSS cursor styles against the page's location
 * instead of the CSS's location (note: this failure affects cursor images
 * only). This javascript makes these URLs absolute by prepending the containing
 * CSS's location.