Class RadioButtonControl

  • All Implemented Interfaces:
    java.util.Observer, javax.servlet.jsp.el.VariableResolver, IControl, IDataBoundControl, IDataControl, IRenderer

    public class RadioButtonControl
    extends DataBoundControl
    Renders a radio button control.

    Example use:
    
     <control:lum_radioButton id="filterTypeBasic" groupName="filterType" value="basic" onClick="onFilterTypeClicked(false)" checked="true">
     	<label>STR_BASIC_FILTER</label>
     </control:lum_radioButton>
     
    xml data available for xsl rendering:
    
     <control checked="true" groupName="filterType" id="filterTypeBasic" onClick="onFilterTypeClicked(false)" type="lum_radioButton" value="basic">
     	<label>Basic filter</label> 
     	<data>
     		<value>true</value> 
     	</data>
     </control>
     
    Since:
    4.0.0
    Version:
    $Revision$ $Date$