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 name.martingeisse.wicket.component.codemirror.CodeMirrorBehavior.java

/**
 * This behavior turns a text area into a CodeMirror editor.
 * 
 * TODO should clean up different newline encodings (NL, CR/NL)
 * on submit and before autocompile.
 */

From source file name.martingeisse.wicket.component.misc.JsonFormattingBehavior.java

/**
 * This behavior expects the model object to be a JSON string.
 * It applies JSON formatting (line breaks, indentation, whitespace)
 * before rendering and after submitting. This is useful when
 * editing JSON data directly in a text field or CodeMirror.
 */

From source file name.martingeisse.wicket.experimental.codemirror.CodeMirrorBehavior.java

/**
 * This behavior turns a text area into a CodeMirror editor.
 * 
 * TODO should clean up different newline encodings (NL, CR/NL)
 * on submit and before autocompile.
 */

From source file name.martingeisse.wicket.experimental.hotkey.HotkeyBehavior.java

/**
 * Adds hotkey functionality to a component.
 * 
 * If more than one component tries to react to the same hotkey,
 * then that key will be disabled for all of them.
 */

From source file name.martingeisse.wicket.util.ProfilingBehavior.java

/**
 * Helps profiling the rendering of components.
 */
public class ProfilingBehavior extends Behavior {

    /**

From source file net.dontdrinkandroot.extensions.wicket.behavior.PageHeightScalingBehavior.java

/**
 * @author Philip Washington Sorst <philip@sorst.net>
 */
public class PageHeightScalingBehavior extends Behavior {
    public PageHeightScalingBehavior() {
    }

From source file net.dontdrinkandroot.extensions.wicket.jqueryui.JQueryUiDraggableAddToListBehavior.java

public class JQueryUiDraggableAddToListBehavior extends Behavior {
    private JQueryUiSortableList<?> sortableList;

    private String listComponentId;

    public JQueryUiDraggableAddToListBehavior(JQueryUiSortableList<?> sortableList) {

From source file net.dontdrinkandroot.extensions.wicket.jqueryui.JQueryUiDraggableBehavior.java

public class JQueryUiDraggableBehavior extends Behavior {
    @Override
    public void renderHead(Component component, IHeaderResponse response) {
        super.renderHead(component, response);
        response.render(
                OnDomReadyHeaderItem.forScript(new JQueryUiScript(component).append(".draggable()").toString()));

From source file net.dontdrinkandroot.wicket.behavior.jqueryui.JQueryUiDraggableAddToListBehavior.java

public class JQueryUiDraggableAddToListBehavior extends Behavior {

    private JQueryUiSortableList<?> sortableList;

    private String listComponentId;

From source file net.dontdrinkandroot.wicket.behavior.jqueryui.JQueryUiDraggableBehavior.java

public class JQueryUiDraggableBehavior extends Behavior {

    @Override
    public void renderHead(Component component, IHeaderResponse response) {

        super.renderHead(component, response);