<forms:radiobuttongroup>
</...>
This control is intended to simplify the grouping of radio button values.
Wrapping radio buttons in a group allows you to omit the name and validation attributes on individual radio buttons by applying them via name and validations attributes on the group.
Content
Must contain at least 1 radio button tag.
Attributes
align
string
Align
Sets the alignment of radio buttons in the group.
Possible values: [Default] vertical, horizontal
id
string
(Required) Give this control a unique id. Can be accessed in the client DOM (eg, document.getElementById('myid') or in the server DOM using [? $myid ?] or [? $('myid') ?]).
name
string
Name
Sets the name value which will be applied to all child Radio Buttons. For
Radio Buttons, the name attribute indicates which form field they will submit their value to.
validations
string
Validations
Sets the validations to be applied to child radio buttons as a comma separated string.
Eg: validations="mandatory"