Описание тега selectoneradio
JSF tag to create a single-select radio button group.
A <h:selectOneRadio>
is a JSF UI component which generates a group of HTML <input type="radio">
elements which allows you to bind the selected value to a managed bean property.
Programmatically, it can be used in exactly the same way as <h:selectOneMenu>
. Therefore, it's sufficient to just advance to its tag wiki page. You just have to substitute the <h:selectOneMenu>
in all examples by <h:selectOneRadio>
.