Example usage for org.apache.wicket.markup.html.form CheckBox subclass-usage

List of usage examples for org.apache.wicket.markup.html.form CheckBox subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form CheckBox subclass-usage.

Usage

From source file com.antilia.web.field.impl.AjaxCheckBox.java

/**
 * A CheckBox which is updated via ajax when the user changes its value
 * 
 * @since 1.2
 * 
 * @author Igor Vaynberg (ivaynberg)

From source file com.github.ilmoeuro.hackmikkeli2016.ui.HmCheckBox.java

public class HmCheckBox extends CheckBox {
    private static final long serialVersionUID = 0l;

    public HmCheckBox(String id) {
        super(id);
    }

From source file com.googlecode.wicket.kendo.ui.form.CheckBox.java

/**
 * Provides a {@link org.apache.wicket.markup.html.form.CheckBox} with the Kendo-ui style<br/>
 * <br/>
 * <b>Note:</b> {@link CheckBox} is not a {@link IJQueryWidget} (no corresponding widget is supplied by Kendo UI)<br/>
 * It means that required Kendo UI dependencies (javascript/stylesheet) are not automatically added.
 *

From source file com.norconex.commons.wicket.markup.html.form.UpdatingCheckbox.java

/**
 * A regular checkbox field, which commits its changes after any state
 * change.  
 * @author Pascal Essiembre
 *
 */

From source file com.visural.stereotyped.ui.components.CheckBox.java

/**
 * @version $Id$
 * @author Richard Nichols
 */
public class CheckBox extends org.apache.wicket.markup.html.form.CheckBox {

From source file gr.interamerican.wicket.bo2.markup.html.form.SelfDrawnCheckBox.java

/**
 * Self-drawn CheckBox.
 */
public class SelfDrawnCheckBox extends CheckBox {

    /**

From source file org.patientview.radar.web.components.RadarRequiredCheckBox.java

public class RadarRequiredCheckBox extends CheckBox {
    public RadarRequiredCheckBox(String id, WebMarkupContainer parent, List<Component> componentsToUpdateList) {
        super(id);
        init(parent, componentsToUpdateList);
    }

From source file org.wicketstuff.table.cell.components.LenientCheckBox.java

/**
 * Simple CheckBox extension that don't require an input tag and the type
 * attribute on the template markup.
 * 
 * @author Pedro Henrique Oliveira dos Santos
 * 

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

/**
 * @author lazyman
 */
public class CheckBox extends org.apache.wicket.markup.html.form.CheckBox {

    public CheckBox(String id, IModel<Boolean> model) {