All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----com.abc.templates.HtmlControl | +----com.abc.templates.HtmlRadio
Represents group of radio buttons. Set of radio buttons withthe same name is a group. Browser will alow you to chose only one fromthe group.
<input type="radio" name="Radio" value="10" checked visible="0" .....(additional property)>
Control has exactly the same signature as pure html( except visible property). All additional properties will be combined in one string.
Example: <input type="checkbox" name="Check" value="10" onMouseOver="mouseover()"> OnMouseOver is additonal property.
addAdditionalOptions(int
iNum, String)
public final void addAdditionalOptions(int index, String sOptions)
public final String getValue()
public final void setChecked(int i)
public final void setValue(int index, String sValue)
public final void setValue(String sValue)
All Packages Class Hierarchy This Package Previous Next Index