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

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

Introduction

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

Usage

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

/**
 * Provides a {@link org.apache.wicket.markup.html.form.Radio} with the Kendo-ui style<br/>
 * <br/>
 * <b>Note:</b> {@link Radio} 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 de.alpharogroup.wicket.components.radio.AjaxRadio.java

/**
 * The Class AjaxRadio extends the Radio component and adds an onclick {@link AjaxEventBehavior}.
 *
 * @param <T>
 *            the generic type
 */

From source file de.alpharogroup.wicket.components.radio.EnumRadio.java

/**
 * The Class EnumRadio extends the class Radio and takes as parameter an enum type.
 *
 * @param <T>
 *            the generic type that have to extends enum.
 * @author Asterios Raptis

From source file ontopoly.components.AjaxParentRadioChild.java

/**
 * Subclass of Radio that notifies an AjaxParentFormChoiceComponentUpdatingBehavior when 
 * it is being rendered. This is useful when the Radio is rendered via an AJAX call.
 * @author grove
 * @see AjaxParentFormChoiceComponentUpdatingBehavior
 */

From source file org.geoserver.importer.web.AjaxRadio.java

public abstract class AjaxRadio<T> extends Radio<T> {

    private static final long serialVersionUID = 1L;

    public abstract void onAjaxEvent(AjaxRequestTarget target);

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

/**
 * @author mocleiri
 * 
 */
public class DTARadio<T> extends Radio<T> {