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.eknet.wicket.commons.components.navlist.ListItemWrapper.java

/**
 * @author <a href="mailto:eike.kettner@gmail.com">Eike Kettner</a>
 * @since 17.12.11 08:44
 */
class ListItemWrapper extends Behavior {

From source file org.hippoecm.frontend.behaviors.EventStoppingBehavior.java

public class EventStoppingBehavior extends Behavior {

    private static final long serialVersionUID = 1L;

    private String event;

From source file org.hippoecm.frontend.plugins.cms.admin.widgets.DefaultFocusBehavior.java

/**
 * Focuses the component bound to this behavior after a page load or Ajax response. This behavior should be used
 * for one component only.
 */
public class DefaultFocusBehavior extends Behavior {

From source file org.hippoecm.frontend.plugins.login.BrowserCheckBehavior.java

public class BrowserCheckBehavior extends Behavior {
    private static final long serialVersionUID = 1L;

    static Logger log = LoggerFactory.getLogger(BrowserCheckBehavior.class);

    BrowserCheck check;

From source file org.hippoecm.frontend.plugins.yui.AbstractYuiBehavior.java

/**
 * Base class for behaviors that want to use YUI modules. It uses a {@link IYuiContext} to register all 
 * required components. The {@link IYuiContext} is created by a (global) {@link IYuiManager} which, in this case, lives
 * inside the {@link Page} (as an {@link Behavior}) that is retrieved by <code>component.getPage()</code>
 *  
 *  <p>

From source file org.hippoecm.frontend.plugins.yui.layout.UnitBehavior.java

/**
 * This behavior stores the component id as it's markupId in the {@link UnitSettings} and if the request rendering this
 * behavior is an Ajax-request, it will force the whole wireframe to re-render (since this unit might be added to an
 * already existing wireframe).  
 */
public class UnitBehavior extends Behavior {

From source file org.hippoecm.frontend.plugins.yui.scrollbehavior.ScrollBehavior.java

public class ScrollBehavior extends Behavior {
    private static final long serialVersionUID = 1L;

    private static final ResourceReference SCRIPT = new JavaScriptResourceReference(ScrollBehavior.class,
            "scroll.js");
    private final PackageTextTemplate INIT = new PackageTextTemplate(ScrollBehavior.class, "init_scroll.js");

From source file org.hippoecm.frontend.plugins.yui.webapp.WebAppBehavior.java

/**
 * This is the base behavior needed for developing Wicket applications using the YUI framework developed by Hippo.
 * 
 * <p>
 * It's most important feature is implementing the {@link IYuiManager} interface, enabling the 
 * {@link AbstractYuiBehavior} and {@link AbstractYuiAjaxBehavior} to retrieve {@link IYuiContext} instances, and thus

From source file org.jaulp.wicket.behaviors.AddJavascriptBehavior.java

/**
 * The Class AddJavascriptBehavior adds javascript code as String with an id.
 */
public class AddJavascriptBehavior extends Behavior {

    /** The Constant serialVersionUID. */

From source file org.jaulp.wicket.behaviors.AddJsQueryBehavior.java

public class AddJsQueryBehavior extends Behavior {
    /** The Constant logger. */
    protected static final Logger LOGGER = Logger.getLogger(AddJsQueryBehavior.class.getName());

    /** The Constant serialVersionUID. */
    private static final long serialVersionUID = 1L;