The input element of type radio-group is used to logically group radio buttons.

Syntax:

Element

Attributes

Value

Notes for Element/Attribute/Value

input

type

radio-group


name

string


length

integer

Default is 0. A value of 0 indicates no input limit.

readonly

boolean

Default is false.

Example

    <input type="radio-group" name="RADIO1" length="10">
  <input type="radio" value="RAD1" x1="120" y1="540"/>
  <input type="radio" value="RAD2" x1="140" y1="540" selected="true"/>
  <input type="radio" value="RAD3" x1="160" y1="540"/>
</input>