Class RadioButtonControl

  • All Implemented Interfaces:
    Observer, 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: 22315 $ $Date: 2019-01-25 18:30:16 -0200 (Fri, 25 Jan 2019) $