radio_group(name = "", *values)
Instance Public methods
Generate a sequence of radio button Input elements, as a String.
This works the same as checkbox_group().
However, it is not valid to have more than one radiobutton in a group
checked.
radio_group("name", "foo", "bar", "baz")
# <INPUT TYPE="radio" NAME="name" VALUE="foo">foo
# <INPUT TYPE="radio" NAME="name" VALUE="bar">bar
# <INPUT TYPE="radio" NAME="name" VALUE="baz">baz
radio_group("name", ["foo"],