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

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

Introduction

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

Usage

From source file guru.mmp.application.web.template.components.RadioGroupWithFeedback.java

/**
 * The <code>RadioGroupWithFeedback</code> class extends the Wicket <code>RadioGroup</code>
 * component to provide support for displaying the feedback message for the component.
 *
 * @param <T>
 *

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

public class YesNoRadioGroup extends RadioGroup<Boolean> {

    public YesNoRadioGroup(String id) {
        this(id, false);
    }

From source file org.sakaiproject.sitestats.tool.wicket.components.IndicatingAjaxRadioGroup.java

public abstract class IndicatingAjaxRadioGroup extends RadioGroup implements IAjaxIndicatorAware {
    private static final long serialVersionUID = 1L;
    private AbstractAjaxBehavior ajaxUpdatingBehavior;
    private Object forModelObjectOnly;
    private AjaxIndicatorAppender indicatorAppender = new AjaxIndicatorAppender();

From source file org.wicketstuff.datatable_autocomplete.radio.DTARadioGroup.java

/**
 * @author mocleiri
 * 
 *         A Custom radio group that requires a valid selection.
 * 
 */