Example usage for org.apache.wicket AttributeModifier subclass-usage

List of usage examples for org.apache.wicket AttributeModifier subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket AttributeModifier subclass-usage.

Usage

From source file ca.travelagency.components.decorators.ErrorAttributeModifier.java

public class ErrorAttributeModifier extends AttributeModifier {
    private static final long serialVersionUID = 1L;

    public ErrorAttributeModifier() {
        super("class", "value-error");
    }

From source file ca.travelagency.components.decorators.InfoAttributeModifier.java

public class InfoAttributeModifier extends AttributeModifier {
    private static final long serialVersionUID = 1L;

    public InfoAttributeModifier() {
        super("class", "value-info");
    }

From source file com.cubeia.backoffice.web.util.ConfirmOnclickAttributeModifier.java

/**
 * Confirm dialog attribute modifier for onclick events. This class wraps any existing javascript on the onclick handler
 * with an confirm dialog call. This is useful when Wicket generates it's own javascript and an ordinary attribute
 * appender/modifier cannot be used.
 * @author w
 *

From source file com.cubeia.backoffice.web.util.OddEvenRowsAttributeModifier.java

/**
 * Attribute modifier for repeaters that sets the CSS class to "even" for even rows and "odd" for odd rows.
 */
public class OddEvenRowsAttributeModifier extends AttributeModifier {
    private static final long serialVersionUID = 1L;

From source file com.cubeia.games.poker.admin.wicket.pages.util.ConfirmOnclickAttributeModifier.java

/**
 * Confirm dialog attribute modifier for onclick events. This class wraps any existing javascript on the onclick handler
 * with an confirm dialog call. This is useful when Wicket generates it's own javascript and an ordinary attribute
 * appender/modifier cannot be used.
 * @author w
 *

From source file com.cubeia.games.poker.admin.wicket.pages.util.OddEvenRowsAttributeModifier.java

/**
 * Attribute modifier for repeaters that sets the CSS class to "even" for even rows and "odd" for odd rows.
 */
public class OddEvenRowsAttributeModifier extends AttributeModifier {
    private static final long serialVersionUID = 1L;

From source file com.google.code.jqwicket.ui.validationengine.ValidationEngineFormComponentBehavior.java

/**
 * @author mkalina
 */
public class ValidationEngineFormComponentBehavior extends AttributeModifier {

    private static final long serialVersionUID = 1L;

From source file com.googlecode.wicketwebbeans.model.ErrorHighlightingBehavior.java

/**
 * Behavior that modifies the CSS class attribute of the component's tag to be 
 * "beanFormError" if the component has an error.<p>
 * 
 * @author Dan Syrstad 
 */

From source file com.lyndir.lhunath.opal.wayward.behavior.JSLink.java

/**
 * <h2>{@link JSLink}<br> <sub>[in short] (TODO).</sub></h2>
 *
 * <p> <i>Mar 12, 2010</i> </p>
 *
 * @author lhunath

From source file com.marc.lastweek.web.util.behaviours.JavaScriptAlertConfirmBehaviour.java

/**
 * This class shows a JavaScript confirm window.
 */
public class JavaScriptAlertConfirmBehaviour extends AttributeModifier {

    private static final long serialVersionUID = 176252163308926780L;